1
0
mirror of https://github.com/rricharz/Tek4010.git synced 2026-04-26 03:58:54 +00:00

Merge pull request #58 from tvrusso/fix_clang_warning

Fix clang warning regarding printf
This commit is contained in:
Rene Richarz
2024-06-09 07:43:17 +02:00
committed by GitHub

View File

@@ -300,7 +300,7 @@ void tube_init(int argc, char* argv[])
}
if ((strcmp(argv[firstArg],"-h") == 0) || (strcmp(argv[firstArg],"--help") == 0)){
printf(helpStr);
printf("%s",helpStr);
exit(0);
}