winevdm: Use char type for max length assignment.
This commit is contained in:
parent
6d0fcf64d2
commit
df0726e359
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue