From f20405f4bc36bba233b6240eff6557a6a5dec36e Mon Sep 17 00:00:00 2001 From: David du Colombier <0intro@gmail.com> Date: Wed, 28 Jan 1998 00:00:00 +0000 Subject: [PATCH] Plan 9 from Bell Labs 1998-01-28 --- port/alloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/port/alloc.c b/port/alloc.c index 4e2fac3be0a6790dfe5e7a9c069c95d1ca03728c..e8d9cf67d0ac677a7a9d14cca95305da909e8e00 100644 --- a/port/alloc.c +++ b/port/alloc.c @@ -254,8 +254,8 @@ poolalloc(Pool *p, int size) } iunlock(&p->l); - print("arena too large: size %d cursize %d arenasize %d maxsize %d\n", - size, p->cursize, p->arenasize, p->maxsize); + print("%s arena too large: size %d cursize %d arenasize %d maxsize %d\n", + p->name, size, p->cursize, p->arenasize, p->maxsize); return nil; }