From 27ecfceae15ae80224f4dedd07381598b945359e Mon Sep 17 00:00:00 2001 From: Jim McDonough Date: Fri, 17 May 2002 14:55:50 +0000 Subject: Don't forget the semicolon, you fool! (This used to be commit 1c9387330f776b9b96714f9c9c62087bbd32f7b6) --- source3/lib/dprintf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/lib/dprintf.c b/source3/lib/dprintf.c index 4dcc283047..e3aa2c7669 100644 --- a/source3/lib/dprintf.c +++ b/source3/lib/dprintf.c @@ -43,7 +43,7 @@ int d_vfprintf(FILE *f, const char *format, va_list ap) if (!msgstr) return -1; #if defined(HAVE_VA_COPY) - __va_copy(ap2, ap) + __va_copy(ap2, ap); #else ap2 = ap; #endif -- cgit