Commit 63284bf9 authored by Bruno Jesus's avatar Bruno Jesus Committed by Alexandre Julliard

dinput: Fix some debug output.

parent 52bbc64a
...@@ -344,12 +344,12 @@ static HRESULT joydev_enum_deviceA(DWORD dwDevType, DWORD dwFlags, LPDIDEVICEINS ...@@ -344,12 +344,12 @@ static HRESULT joydev_enum_deviceA(DWORD dwDevType, DWORD dwFlags, LPDIDEVICEINS
/* check whether we have a joystick */ /* check whether we have a joystick */
if ((fd = open(joystick_devices[id].device, O_RDONLY)) < 0) if ((fd = open(joystick_devices[id].device, O_RDONLY)) < 0)
{ {
WARN("open(%s, O_RDONLY) failed: %s\n", joystick_devices[id].name, strerror(errno)); WARN("open(%s, O_RDONLY) failed: %s\n", joystick_devices[id].device, strerror(errno));
return S_FALSE; return S_FALSE;
} }
fill_joystick_dideviceinstanceA( lpddi, version, id ); fill_joystick_dideviceinstanceA( lpddi, version, id );
close(fd); close(fd);
TRACE("Enumerating the linux Joystick device: %s (%s)\n", joystick_devices[id].device, lpddi->tszProductName); TRACE("Enumerating the linux Joystick device: %s (%s)\n", joystick_devices[id].device, joystick_devices[id].name);
return S_OK; return S_OK;
} }
...@@ -373,7 +373,7 @@ static HRESULT joydev_enum_deviceW(DWORD dwDevType, DWORD dwFlags, LPDIDEVICEINS ...@@ -373,7 +373,7 @@ static HRESULT joydev_enum_deviceW(DWORD dwDevType, DWORD dwFlags, LPDIDEVICEINS
/* check whether we have a joystick */ /* check whether we have a joystick */
if ((fd = open(joystick_devices[id].device, O_RDONLY)) < 0) if ((fd = open(joystick_devices[id].device, O_RDONLY)) < 0)
{ {
WARN("open(%s,O_RDONLY) failed: %s\n", joystick_devices[id].device, strerror(errno)); WARN("open(%s, O_RDONLY) failed: %s\n", joystick_devices[id].device, strerror(errno));
return S_FALSE; return S_FALSE;
} }
fill_joystick_dideviceinstanceW( lpddi, version, id ); fill_joystick_dideviceinstanceW( lpddi, version, id );
......
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