aboutsummaryrefslogtreecommitdiff
path: root/src/log.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/log.c')
-rw-r--r--src/log.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/log.c b/src/log.c
index a5ad2a0..8ca70a3 100644
--- a/src/log.c
+++ b/src/log.c
@@ -9,7 +9,8 @@
static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
-void __logln(const char *func, const char *format, ...)
+__attribute__((__format__(__printf__, 2, 0))) void
+__logln(const char *func, const char *format, ...)
{
pthread_mutex_lock(&mutex);
@@ -25,7 +26,8 @@ void __logln(const char *func, const char *format, ...)
pthread_mutex_unlock(&mutex);
}
-void __errln(const char *func, const char *format, ...)
+__attribute__((__format__(__printf__, 2, 0))) void
+__errln(const char *func, const char *format, ...)
{
pthread_mutex_lock(&mutex);