avoid compiler warning in client/cliparser/argtable3.c (#746)

This commit is contained in:
pwpiwi 2019-01-04 08:53:30 +01:00 committed by GitHub
commit 968ad67280
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -389,7 +389,9 @@ static void warnx(const char *fmt, ...)
#endif
va_end(ap);
#if defined(_MSC_VER)
#pragma warning(suppress: 6053)
#endif
fprintf(stderr, "%s\n", opterrmsg);
}