aboutsummaryrefslogtreecommitdiffstats
path: root/src/log.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/log.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/log.c b/src/log.c
index c35788bcf..c9fc5a82f 100644
--- a/src/log.c
+++ b/src/log.c
@@ -31,7 +31,7 @@ short warningFlushed = 0;
static char * warningBuffer = NULL;
-void initLog() {
+void initLog(void) {
ConfigParam * param = getConfigParam(CONF_LOG_LEVEL);
if(!param) return;
@@ -69,7 +69,7 @@ void bufferWarning(char * format, ... ) {
va_end(arglist);
}
-void flushWarningLog() {
+void flushWarningLog(void) {
char * s;
DEBUG("flushing warning messages\n");