diff options
author | Brian Behlendorf <[email protected]> | 2010-08-26 10:28:31 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2010-08-31 08:38:46 -0700 |
commit | 3f504482929e4c4e098ec00b335ddc45509be716 (patch) | |
tree | ea4d05ade49c141556a5a8ead87826aaf22519b5 | |
parent | 22c81dd8a9ec5177a65808c1d782599402b40233 (diff) |
Fix missing newlines
Add missing \n's to dprintf()s
Signed-off-by: Brian Behlendorf <[email protected]>
-rw-r--r-- | module/zfs/arc.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); } |