summaryrefslogtreecommitdiffstats
path: root/sys/kern/subr_prf.c
diff options
context:
space:
mode:
authorscottl <scottl@FreeBSD.org>2006-02-25 16:20:22 +0000
committerscottl <scottl@FreeBSD.org>2006-02-25 16:20:22 +0000
commit2144501c63c03694506b1a5e4a20fd3f69e97931 (patch)
tree7b3060702fced980584b4ebdacc5be08dd4c4539 /sys/kern/subr_prf.c
parent8188e4b6efaa706380cead5b7686c50e5d2096a5 (diff)
downloadFreeBSD-src-2144501c63c03694506b1a5e4a20fd3f69e97931.zip
FreeBSD-src-2144501c63c03694506b1a5e4a20fd3f69e97931.tar.gz
Always print a newline char at the end of the line.
Diffstat (limited to 'sys/kern/subr_prf.c')
-rw-r--r--sys/kern/subr_prf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/kern/subr_prf.c b/sys/kern/subr_prf.c
index 8184c01..1498368 100644
--- a/sys/kern/subr_prf.c
+++ b/sys/kern/subr_prf.c
@@ -978,8 +978,9 @@ hexdump(const void *ptr, int length, const char *hdr, int flags)
else
printf(".");
}
- printf("|\n");
+ printf("|");
}
+ printf("\n");
}
}
OpenPOWER on IntegriCloud