summaryrefslogtreecommitdiff
path: root/sys/src/9/port/proc.c
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@gmx.de>2012-03-28 18:13:45 +0200
committercinap_lenrek <cinap_lenrek@gmx.de>2012-03-28 18:13:45 +0200
commit73b7f5f12c77c6434c2ffbd2257ab0d0439731e7 (patch)
tree54f63cf3d0e5de2ef6c9fda04583e48ad135418b /sys/src/9/port/proc.c
parentc3004ddf25d1940d5bc7aec9cf8db387add82f7f (diff)
panic: trailing newlines
Diffstat (limited to 'sys/src/9/port/proc.c')
-rw-r--r--sys/src/9/port/proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/port/proc.c b/sys/src/9/port/proc.c
index b3249ec97..a13164d8d 100644
--- a/sys/src/9/port/proc.c
+++ b/sys/src/9/port/proc.c
@@ -718,7 +718,7 @@ procinit0(void) /* bad planning - clashes with devproc.c */
procalloc.free = xalloc(conf.nproc*sizeof(Proc));
if(procalloc.free == nil){
xsummary();
- panic("cannot allocate %lud procs (%ludMB)\n", conf.nproc, conf.nproc*sizeof(Proc)/(1024*1024));
+ panic("cannot allocate %lud procs (%ludMB)", conf.nproc, conf.nproc*sizeof(Proc)/(1024*1024));
}
procalloc.arena = procalloc.free;