Silence compiler warning

This commit is contained in:
stefanrueger
2025-06-09 19:25:09 +02:00
parent 7eaa5cb785
commit e190bf9446

View File

@@ -1016,7 +1016,7 @@ int main(int argc, char *argv[]) {
"%c%s version %s\n"
"Copyright see https://github.com/avrdudes/avrdude/blob/main/AUTHORS\n"
"Use https://github.com/avrdudes/avrdude/issues to report bugs and ask questions\n",
toupper(*progname), *progname? progname+1: "", AVRDUDE_FULL_VERSION
toupper((uint8_t) *progname), *progname? progname+1: "", AVRDUDE_FULL_VERSION
);
exit(0);
}