upas/fs: add missing newline to a debug print

Noticed while doing some debugging.
This commit is contained in:
risto.salminen@gmx.com 2021-10-09 10:53:39 +00:00 committed by Ori Bernstein
parent a8ad3fb3d0
commit d280f411f6

View file

@ -353,7 +353,7 @@ cachebody(Mailbox *mb, Message *m)
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;