Always print a newline char at the end of the line.

This commit is contained in:
Scott Long 2006-02-25 16:20:22 +00:00
parent 0b80d21bdf
commit 6ec6fb9bc6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=156001

View File

@ -978,8 +978,9 @@ hexdump(const void *ptr, int length, const char *hdr, int flags)
else
printf(".");
}
printf("|\n");
printf("|");
}
printf("\n");
}
}