Merge "unicode,INIT_WARGV: add missing cast"

This commit is contained in:
James Zern 2019-01-25 08:58:32 +00:00 committed by Gerrit Code Review
commit e05f785a66

View File

@ -28,7 +28,8 @@
// Create a wchar_t array containing Unicode parameters.
#define INIT_WARGV(ARGC, ARGV) \
int wargc; \
const W_CHAR** const wargv = CommandLineToArgvW(GetCommandLineW(), &wargc); \
const W_CHAR** const wargv = \
(const W_CHAR**)CommandLineToArgvW(GetCommandLineW(), &wargc); \
do { \
if (wargv == NULL || wargc != (ARGC)) { \
fprintf(stderr, "Error: Unable to get Unicode arguments.\n"); \