BridgeManager: print error code when alt_setting function fail

alt_setting-error
Henrik Grimler 2021-11-22 16:40:08 +01:00
parent 3d74deee1e
commit 29aac0f5cb
No known key found for this signature in database
GPG Key ID: B0076E490B71616B
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ bool BridgeManager::SetupDeviceInterface(void)
if (result != LIBUSB_SUCCESS)
{
Interface::PrintError("Setting up interface failed!\n");
Interface::PrintError("Setting up interface failed with error code %i!\n", result);
return (false);
}