Add missing newline in the log message of the previous commit.

Approved by:	re (kensmith) - implied
This commit is contained in:
Diomidis Spinellis 2007-08-31 13:56:26 +00:00
parent 72de1b3709
commit d5b6981e69
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=172024

View File

@ -527,7 +527,7 @@ encode_long(long val)
return (0);
if (val < 0) {
log(LOG_NOTICE,
"encode_long: negative value %ld in accounting record",
"encode_long: negative value %ld in accounting record\n",
val);
val = LONG_MAX;
}