ref: 263ed2c762355906a1b84f3260140499775130e1
parent: bad2ef6ed9fb158c358fdce43144150dfada60dd
author: risto.salminen@gmx.com <risto.salminen@gmx.com>
date: Sat Oct 9 06:53:39 EDT 2021
upas/fs: add missing newline to a debug print Noticed while doing some debugging.
--- a/sys/src/cmd/upas/fs/cache.c
+++ b/sys/src/cmd/upas/fs/cache.c
@@ -353,7 +353,7 @@
if(mb->fetch == nil || m->cstate&Cbody)
return 0;
o = m->end - m->start;
- dprint("cachebody %lud [%D] %lud %lud %s", m->id, m->fileid, o, m->size, cstate(m));
+ dprint("cachebody %lud [%D] %lud %lud %s\n", m->id, m->fileid, o, m->size, cstate(m));
if(o < m->size)
if(fetch(mb, m, o, m->size - o) < 0)
return -1;
--
⑨