1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

Don't forget the semicolon, you fool!

This commit is contained in:
Jim McDonough -
parent 64aaec137e
commit 1c9387330f

View File

@ -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