Skip to content

Commit

Permalink
fixes missing () in console
Browse files Browse the repository at this point in the history
  • Loading branch information
traxanos committed Sep 11, 2023
1 parent 6887a52 commit 9576370
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OpenKNX/Console.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ namespace OpenKNX
{
showHelp();
}
else if (!diagnoseKo && cmd == "v" || cmd == "versions")
else if (!diagnoseKo && (cmd == "v" || cmd == "versions"))
{
showVersions();
}
Expand Down

0 comments on commit 9576370

Please sign in to comment.