Fix one more issue with -Werror

This commit is contained in:
Zachary Hall 2024-04-10 13:28:06 -07:00
parent 1befd8fef7
commit 514f30773a

View file

@ -156,7 +156,7 @@ int main(int argc, char **argv) {
helpstr = helpstr.substr(helpstr.find("\n") + 1); helpstr = helpstr.substr(helpstr.find("\n") + 1);
helpstr = helpstr.substr(helpstr.find("\n") + 1); helpstr = helpstr.substr(helpstr.find("\n") + 1);
helpstr = helpstr.substr(helpstr.find("\n") + 1); helpstr = helpstr.substr(helpstr.find("\n") + 1);
printf(helpstr.c_str()); printf("%s", helpstr.c_str());
} }
output = return_code; output = return_code;
} }