Skip to content
This repository has been archived by the owner on Apr 14, 2024. It is now read-only.

Commit

Permalink
Fix build break and warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
pstavirs committed Jun 28, 2022
1 parent 701a058 commit 2970a29
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions server/turbo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ bool initTurbo()
return true;
}

bool isTurboPort(const char* device)
bool isTurboPort(const char* /*device*/)
{
return false;
}

AbstractPort* createTurboPort(int id, const char* device)
AbstractPort* createTurboPort(int /*id*/, const char* /*device*/)
{
return nullptr;
}
Expand All @@ -38,5 +38,3 @@ bool processTurboOption(int /*opt*/)
{
return false;
}
#endif

0 comments on commit 2970a29

Please sign in to comment.