summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/GCAdapter.cpp
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2018-04-12 21:40:29 +0200
committerGitHub <noreply@github.com>2018-04-12 21:40:29 +0200
commitb2de380d162c4805edb94808f38a214725d2724e (patch)
tree1d8a9e7eea10820e5d645ad5028e506836b856de /Source/Core/InputCommon/GCAdapter.cpp
parent0bfeb37a1f50193d39559d29802cb48f45db2b02 (diff)
parent40bb9974f21878e64fb03d70e717cb996bf13a29 (diff)
Merge pull request #6635 from spycrab/fix_linter
Tools: Bump lint.sh version
Diffstat (limited to 'Source/Core/InputCommon/GCAdapter.cpp')
-rw-r--r--Source/Core/InputCommon/GCAdapter.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/Source/Core/InputCommon/GCAdapter.cpp b/Source/Core/InputCommon/GCAdapter.cpp
index 7a897affdc..743fedefdd 100644
--- a/Source/Core/InputCommon/GCAdapter.cpp
+++ b/Source/Core/InputCommon/GCAdapter.cpp
@@ -137,8 +137,9 @@ static void ScanThreadFunc()
if (s_libusb_hotplug_enabled)
{
if (libusb_hotplug_register_callback(
- s_libusb_context, (libusb_hotplug_event)(LIBUSB_HOTPLUG_EVENT_DEVICE_ARRIVED |
- LIBUSB_HOTPLUG_EVENT_DEVICE_LEFT),
+ s_libusb_context,
+ (libusb_hotplug_event)(LIBUSB_HOTPLUG_EVENT_DEVICE_ARRIVED |
+ LIBUSB_HOTPLUG_EVENT_DEVICE_LEFT),
LIBUSB_HOTPLUG_ENUMERATE, 0x057e, 0x0337, LIBUSB_HOTPLUG_MATCH_ANY, HotplugCallback,
nullptr, &s_hotplug_handle) != LIBUSB_SUCCESS)
s_libusb_hotplug_enabled = false;
@@ -267,8 +268,9 @@ static bool CheckDeviceAccess(libusb_device* device)
{
if (dRet)
{
- ERROR_LOG(SERIALINTERFACE, "Dolphin does not have access to this device: Bus %03d Device "
- "%03d: ID ????:???? (couldn't get id).",
+ ERROR_LOG(SERIALINTERFACE,
+ "Dolphin does not have access to this device: Bus %03d Device "
+ "%03d: ID ????:???? (couldn't get id).",
bus, port);
}
else