From 6ec6fb9bc688e9f4a6069815c326d7c8f4e61276 Mon Sep 17 00:00:00 2001 From: Scott Long Date: Sat, 25 Feb 2006 16:20:22 +0000 Subject: [PATCH] Always print a newline char at the end of the line. --- sys/kern/subr_prf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/kern/subr_prf.c b/sys/kern/subr_prf.c index 8184c01c9766..1498368fff4e 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"); } }