From 023206fc0839de485a69aeec44ac7a89fcbe8bf6 Mon Sep 17 00:00:00 2001 From: "Patrick R. Gansterer" Date: Thu, 10 May 2012 22:17:51 +0800 Subject: [PATCH] xmllint: Build fix for endTimer if !defined(HAVE_GETTIMEOFDAY) For https://bugzilla.gnome.org/show_bug.cgi?id=638649 code was broken ! --- xmllint.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xmllint.c b/xmllint.c index 39d71381..3ca80776 100644 --- a/xmllint.c +++ b/xmllint.c @@ -520,10 +520,11 @@ endTimer(char *format, ...) * We cannot do anything because we don't have a timing function */ #ifdef HAVE_STDARG_H + va_list ap; va_start(ap, format); vfprintf(stderr, format, ap); va_end(ap); - fprintf(stderr, " was not timed\n", msec); + fprintf(stderr, " was not timed\n"); #else /* We don't have gettimeofday, time or stdarg.h, what crazy world is * this ?!