summaryrefslogtreecommitdiff
path: root/source3/lib/dprintf.c
diff options
context:
space:
mode:
authorJim McDonough <jmcd@samba.org>2002-05-17 14:55:50 +0000
committerJim McDonough <jmcd@samba.org>2002-05-17 14:55:50 +0000
commit27ecfceae15ae80224f4dedd07381598b945359e (patch)
treefa9640bafdbbfe7ecbfa970eb046decd31823e46 /source3/lib/dprintf.c
parent0d26e9f69c49bca92a3b4c68ebe36eef24895d75 (diff)
downloadsamba-27ecfceae15ae80224f4dedd07381598b945359e.tar.gz
samba-27ecfceae15ae80224f4dedd07381598b945359e.tar.bz2
samba-27ecfceae15ae80224f4dedd07381598b945359e.zip
Don't forget the semicolon, you fool!
(This used to be commit 1c9387330f776b9b96714f9c9c62087bbd32f7b6)
Diffstat (limited to 'source3/lib/dprintf.c')
-rw-r--r--source3/lib/dprintf.c2
1 files changed, 1 insertions, 1 deletions
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