Commit 79ccb788 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

dinput: Fix type of loop variable in alloc_device().

parent e403292e
......@@ -173,7 +173,7 @@ static SysMouseImpl *alloc_device(REFGUID rguid, const void *mvt, IDirectInputIm
{
SysMouseImpl* newDevice;
LPDIDATAFORMAT df = NULL;
int i;
unsigned i;
newDevice = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(SysMouseImpl));
if (!newDevice) return NULL;
......
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