From d5ee5828d963e259185dac7c730a04d08ae59bb5 Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Thu, 8 May 2014 21:18:52 +0200 Subject: [PATCH] Remove unused cc_vlog function --- ccache.h | 1 - util.c | 9 --------- 2 files changed, 10 deletions(-) diff --git a/ccache.h b/ccache.h index 50e1ae429..73f69b907 100644 --- a/ccache.h +++ b/ccache.h @@ -111,7 +111,6 @@ bool hash_file(struct mdfour *md, const char *fname); /* ------------------------------------------------------------------------- */ /* util.c */ -void cc_vlog(const char *format, va_list ap); void cc_log(const char *format, ...) ATTR_FORMAT(printf, 1, 2); void cc_bulklog(const char *format, ...) ATTR_FORMAT(printf, 1, 2); void cc_log_argv(const char *prefix, char **argv); diff --git a/util.c b/util.c index 2662da02e..f72b38315 100644 --- a/util.c +++ b/util.c @@ -119,15 +119,6 @@ vlog(const char *format, va_list ap, bool log_updated_time) fprintf(logfile, "\n"); } -/* - * Write a message to the log file (adding a newline) and flush. - */ -void -cc_vlog(const char *format, va_list ap) -{ - vlog(format, ap, true); -} - /* * Write a message to the log file (adding a newline) and flush. */ -- 2.47.2