Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit

Permalink
Fix unused variable warning in RoccatVulcanKeyboardController.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
CalcProgrammer1 committed Jul 7, 2024
1 parent d37068b commit 005212b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ void RoccatVulcanKeyboardController::SendMode(unsigned int mode, unsigned int sp
buf[packet_length - 2] = total & 0xFF;
buf[packet_length - 1] = total >> 8;

int ret = hid_send_feature_report(dev_ctrl, buf, packet_length);
hid_send_feature_report(dev_ctrl, buf, packet_length);

delete[] buf;
}
Expand Down

0 comments on commit 005212b

Please sign in to comment.