Skip to content

Commit 005212b

Browse files
Fix unused variable warning in RoccatVulcanKeyboardController.cpp
1 parent d37068b commit 005212b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Controllers/RoccatController/RoccatVulcanKeyboardController/RoccatVulcanKeyboardController.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ void RoccatVulcanKeyboardController::SendMode(unsigned int mode, unsigned int sp
348348
buf[packet_length - 2] = total & 0xFF;
349349
buf[packet_length - 1] = total >> 8;
350350

351-
int ret = hid_send_feature_report(dev_ctrl, buf, packet_length);
351+
hid_send_feature_report(dev_ctrl, buf, packet_length);
352352

353353
delete[] buf;
354354
}

0 commit comments

Comments
 (0)