opensolaris compat: terminate cmn_err mesages with a new line

MFC after:	6 days
This commit is contained in:
Andriy Gapon 2012-11-24 13:10:36 +00:00
parent c4f59a3c09
commit 59e407dfbf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=243498

View File

@ -60,6 +60,7 @@ vcmn_err(int ce, const char *fmt, va_list adx)
if (ce != CE_IGNORE) {
printf("%s", prefix);
vprintf(fmt, adx);
printf("\n");
}
}