Fixed macro declaration

This commit is contained in:
Benoît LeBlanc
2013-11-07 13:55:06 -05:00
parent 02fe384ecb
commit dfd39b6d0a

View File

@@ -153,7 +153,7 @@ WINPR_API int lstrcmpW(LPCWSTR lpString1, LPCWSTR lpString2);
#endif
#define sprintf_s snprintf
#define _scprintf(_fmt, ) snprintf(NULL, 0, _fmt, ## __VAR_ARGS__)
#define _scprintf(_fmt, ...) snprintf(NULL, 0, _fmt, ## __VA_ARGS__)
/* Unicode Conversion */