upas/fs: add missing newline to a debug print
Noticed while doing some debugging.
This commit is contained in:
parent
a8ad3fb3d0
commit
d280f411f6
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue