Commit b06e30d3 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

cmdlgtst: Replace long with LONG.

parent 2f614e60
......@@ -60,7 +60,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(cmdlgtst);
struct FlagTableEntry {
int ft_id;
unsigned long ft_bit;
ULONG ft_bit;
};
#define EXPORT
......@@ -576,7 +576,7 @@ static void mwcd_SetFlags(HWND hWnd, struct FlagTableEntry *table, DWORD flags)
static DWORD mwcd_GetFlags(HWND hWnd, struct FlagTableEntry * table)
{
int i;
unsigned long l = 0;
ULONG l = 0;
for(i=0; table[i].ft_id != IDOK; i++)
{
......
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