This commit is contained in:
Wolfgang Hottgenroth 2021-02-09 18:54:08 +01:00
parent f1f96e4c2f
commit a10c2ab74f
Signed by: wn
GPG Key ID: 6C1E5E531E0D5D7F

View File

@ -10,7 +10,7 @@ void logmsg(int prio, const char* format, ...) {
// openlog("counter", 0, LOG_LOCAL0);
va_start(vl, format);
//vsyslog(prio, format, vl);
vprintf(prio, format, vl);
vprintf(format, vl);
va_end(vl);
// closelog();
}