Commit 41848c82 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

msi: Fix "type of 'x' defaults to 'int'" warnings.

parent 36130b4d
......@@ -393,13 +393,13 @@ static BOOL format_str_is_number(LPWSTR str)
return TRUE;
}
static BOOL format_is_alpha(x)
static BOOL format_is_alpha(WCHAR x)
{
return (!format_is_number(x) && x != '\0' &&
x != '[' && x != ']' && x != '{' && x != '}');
}
static BOOL format_is_literal(x)
static BOOL format_is_literal(WCHAR x)
{
return (format_is_alpha(x) || format_is_number(x));
}
......
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