Skip to content
Snippets Groups Projects
Commit 2a5f05e3 authored by Sebastian Lackner's avatar Sebastian Lackner Committed by Alexandre Julliard
Browse files

dinput: Use variable of correct type to store HRESULT value.

parent a388cc1f
No related branches found
No related tags found
No related merge requests found
......@@ -393,7 +393,8 @@ static HRESULT WINAPI IDirectInputAImpl_EnumDevices(
IDirectInputImpl *This = impl_from_IDirectInput7A(iface);
DIDEVICEINSTANCEA devInstance;
unsigned int i;
int j, r;
int j;
HRESULT r;
TRACE("(this=%p,0x%04x '%s',%p,%p,0x%04x)\n",
This, dwDevType, _dump_DIDEVTYPE_value(dwDevType, This->dwVersion),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment