Sync OpenBSD patchset 1058:

Fix warnings. Doh.
This commit is contained in:
Tiago Cunha 2012-03-18 02:00:39 +00:00
parent 0987d55231
commit 3a902f4196

3
log.c
View File

@ -39,6 +39,7 @@ FILE *log_file;
/* Debug level. */
int log_level;
void log_event_cb(int, const char *);
void log_vwrite(int, const char *, va_list);
__dead void log_vfatal(const char *, va_list);
@ -46,7 +47,7 @@ __dead void log_vfatal(const char *, va_list);
void
log_event_cb(unused int severity, const char *msg)
{
log_warnx(msg);
log_warnx("%s", msg);
}
/* Open logging to tty. */