]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Remove unused cc_vlog function
authorJoel Rosdahl <joel@rosdahl.net>
Thu, 8 May 2014 19:18:52 +0000 (21:18 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Thu, 8 May 2014 19:18:52 +0000 (21:18 +0200)
ccache.h
util.c

index 50e1ae42966cf87ee9cc9a466b2505eda3f5c495..73f69b907f6d8d4f7637b6e70fb377525b4dfa81 100644 (file)
--- 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 2662da02ebabe64a3f8187ae6725591206115ab4..f72b383150bf31f0a0889e117056c7c3df9479c8 100644 (file)
--- 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.
  */