sources moved to C++20

This commit is contained in:
d1str4ught
2025-09-22 00:59:25 +02:00
parent 6f721a792a
commit a9c6cfc7dc
4 changed files with 6 additions and 6 deletions

View File

@@ -638,7 +638,8 @@ int start(int argc, char **argv)
}
#endif
while ((ch = getopt(argc, argv, "npverltI")) != -1)
char optstring[] = "npverltI";
while ((ch = getopt(argc, argv, optstring)) != -1)
{
char* ep = NULL;