Commit df0726e3 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

winevdm: Use char type for max length assignment.

parent 6d0fcf64
......@@ -359,7 +359,7 @@ static char *build_command_line( char **argv )
return NULL;
p = cmd_line;
*p++ = (len < 256) ? len : 255;
*p++ = (len < 256) ? len : '\xff';
for (arg = argv; *arg; arg++)
{
BOOL has_space,has_quote;
......
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