From fb1627ba903e4b76b80abbdd613f477212968d0a Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Wed, 15 Oct 2003 03:08:20 +0000 Subject: [PATCH] va_start needs va_end --- openbox/debug.c | 1 + 1 file changed, 1 insertion(+) diff --git a/openbox/debug.c b/openbox/debug.c index b7f8e1f4..755fbcd1 100644 --- a/openbox/debug.c +++ b/openbox/debug.c @@ -35,5 +35,6 @@ void ob_debug(char *a, ...) if (show) { va_start(vl, a); vfprintf(stderr, a, vl); + va_end(vl); } } -- 2.44.0