From: Joel Rosdahl Date: Thu, 8 May 2014 19:18:52 +0000 (+0200) Subject: Remove unused cc_vlog function X-Git-Tag: v3.2~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d5ee5828d963e259185dac7c730a04d08ae59bb5;p=thirdparty%2Fccache.git Remove unused cc_vlog function --- 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. */