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
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++;
/*