From 044ebf195237c2c5ea13df5f1f93d61eaacf9d7b Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 21 Jul 2009 18:40:30 +0000 Subject: Remove a couple of unused functions and fix a type ("FALLTHOUGH"), found by lint. --- log.c | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'log.c') diff --git a/log.c b/log.c index d0efaee1..3aeec59f 100644 --- a/log.c +++ b/log.c @@ -171,19 +171,6 @@ log_debug2(const char *msg, ...) } } -/* Log a debug message at level 3. */ -void printflike1 -log_debug3(const char *msg, ...) -{ - va_list ap; - - if (log_level > 2) { - va_start(ap, msg); - log_vwrite(LOG_DEBUG, msg, ap); - va_end(ap); - } -} - /* Log a critical error, with error string if necessary, and die. */ __dead void log_vfatal(const char *msg, va_list ap) -- cgit