From: Brian Behlendorf Date: Thu, 26 Aug 2010 17:28:31 +0000 (-0700) Subject: Fix missing newlines X-Git-Tag: zfs-0.5.1~58 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3f504482929e4c4e098ec00b335ddc45509be716;p=zfs Fix missing newlines Add missing \n's to dprintf()s Signed-off-by: Brian Behlendorf --- diff --git a/module/zfs/arc.c b/module/zfs/arc.c index 3b76d1fbf..5ac73e115 100644 --- a/module/zfs/arc.c +++ b/module/zfs/arc.c @@ -1710,7 +1710,7 @@ arc_evict(arc_state_t *state, uint64_t spa, int64_t bytes, boolean_t recycle, mutex_exit(&state->arcs_mtx); if (bytes_evicted < bytes) - dprintf("only evicted %lld bytes from %x", + dprintf("only evicted %lld bytes from %x\n", (longlong_t)bytes_evicted, state); if (skipped) @@ -1826,7 +1826,7 @@ top: } if (bytes_deleted < bytes) - dprintf("only deleted %lld bytes from %p", + dprintf("only deleted %lld bytes from %p\n", (longlong_t)bytes_deleted, state); }