It was used only once. --- src/log.c | 7 +------ 1 files changed, 1 insertions(+), 6 deletions(-) diff --git a/src/log.c b/src/log.c index 29e2d7d..cb02aad 100644 --- a/src/log.c +++ b/src/log.c @@ -33,18 +33,13 @@ #include "log.h" -static inline void vinfo(const char *format, va_list ap) -{ - vsyslog(LOG_INFO, format, ap); -} - void info(const char *format, ...) { va_list ap; va_start(ap, format); - vinfo(format, ap); + vsyslog(LOG_INFO, format, ap); va_end(ap); } -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html