This commit is contained in:
Anonymous Maarten 2024-02-06 22:48:13 +01:00
parent f70d1eb495
commit 41de5779a5
2 changed files with 18 additions and 18 deletions

View File

@ -945,10 +945,10 @@ int MxDeviceEnumerate::FormatDeviceName(char* p_buffer, const MxDriver* p_driver
p_buffer,
"%d 0x%x 0x%x 0x%x 0x%x",
number,
((DWORD*)(p_device->m_guid))[0],
((DWORD*)(p_device->m_guid))[1],
((DWORD*)(p_device->m_guid))[2],
((DWORD*)(p_device->m_guid))[3]
((DWORD*) (p_device->m_guid))[0],
((DWORD*) (p_device->m_guid))[1],
((DWORD*) (p_device->m_guid))[2],
((DWORD*) (p_device->m_guid))[3]
);
return 0;
}