From ee75e2a315b9ea6c35d468cbce9658f7f67105b3 Mon Sep 17 00:00:00 2001 From: moritz Date: Thu, 18 Oct 2007 06:38:51 +0000 Subject: [PATCH] Wow, now how did that one creep in an remain undetected for so long? git-svn-id: https://svn.xiph.org/trunk/ezstream@14008 0101bb08-14d6-0310-b084-bc0e0c8e3800 --- src/xalloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xalloc.c b/src/xalloc.c index f5f6c77..42e2a7d 100644 --- a/src/xalloc.c +++ b/src/xalloc.c @@ -172,7 +172,7 @@ _xalloc_error(int errnum, const char *fmt, ...) if (errnum > 0) { if (xalloc_initialized) XALLOC_LOCK(strerror_mutex); - vfprintf(debug_output, ": %s\n", strerror(errnum)); + fprintf(debug_output, ": %s\n", strerror(errnum)); if (xalloc_initialized) XALLOC_UNLOCK(strerror_mutex); }