Fixed compilation warning in HID name formatting

This commit is contained in:
alexey.lysiuk 2014-09-14 09:51:55 +03:00
parent c7fc44062e
commit 1529ff7730
1 changed files with 1 additions and 1 deletions

View File

@ -376,7 +376,7 @@ FString IOKitJoystick::GetIdentifier()
{
char identifier[ 32 ] = {0};
snprintf( identifier, sizeof( identifier ), "VID_%04lx_PID_%04lx",
snprintf( identifier, sizeof( identifier ), "VID_%04x_PID_%04x",
IOHIDDevice_GetVendorID( m_device ), IOHIDDevice_GetProductID( m_device ) );
return FString( identifier );