Don't call log() without a format string.

MFC after:	2 weeks
This commit is contained in:
Kris Kennaway 2001-09-10 12:00:47 +00:00
parent db8b9c344e
commit 7c483fee3f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=83299
2 changed files with 2 additions and 2 deletions

View file

@ -290,7 +290,7 @@ sscf_uni_abort(uvp, msg)
/*
* Log error message
*/
log(LOG_ERR, msg);
log(LOG_ERR, "%s", msg);
/*
* Set termination states

View file

@ -399,7 +399,7 @@ sscop_abort(sop, msg)
/*
* Log and count error
*/
log(LOG_ERR, msg);
log(LOG_ERR, "%s", msg);
sscop_stat.sos_aborts++;
/*