Commit dcc057c6 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

cabarc: Fix printing of a not recognized compression type argument.

parent bffd5362
......@@ -666,7 +666,8 @@ int wmain( int argc, WCHAR *argv[] )
else if (!strcmpiW( argv[1], mszipW )) opt_compression = tcompTYPE_MSZIP;
else
{
WINE_MESSAGE( "cabarc: Unknown compression type '%s'\n", optarg );
char *arg = strdupWtoA( CP_ACP, argv[1] );
WINE_MESSAGE( "cabarc: Unknown compression type '%s'\n", arg);
return 1;
}
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment