Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
I apparently don't have unused function argument warnings enabled?
  • Loading branch information
1Revenger1 committed Oct 18, 2024
1 parent 5f8bf24 commit 5f96475
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion VoodooRMI/Functions/F01.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ int F01::rmi_f01_resume()
return error;
}

void F01::attention([[maybe_unused]] AbsoluteTime time, UInt8 *data[], size_t *size)
void F01::attention(AbsoluteTime time, UInt8 *data[], size_t *size)
{
UInt8 device_status = 0;

Expand Down
1 change: 0 additions & 1 deletion VoodooRMI/Functions/F17.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,6 @@ int F17::config() {

int F17::rmi_f17_process_stick(struct rmi_f17_stick_data *stick) {
int retval = 0;
const RmiConfiguration &conf = getConfiguration();
RMITrackpointReport report;

if (stick->query.general.has_absolute) {
Expand Down

0 comments on commit 5f96475

Please sign in to comment.