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

This commit is contained in:
Michael Stefaniuc 2008-02-05 14:17:21 +01:00 committed by Alexandre Julliard
parent 36130b4d77
commit 41848c828b
1 changed files with 2 additions and 2 deletions

View File

@ -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));
}