mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-27 21:42:06 +00:00
Consistently use uppercase hex digits
This commit is contained in:
2
src/extern/getopt.c
vendored
2
src/extern/getopt.c
vendored
@@ -82,7 +82,7 @@ static int getopt(int argc, char *argv[], char const *optstring)
|
||||
k = mbtowc(&c, argv[musl_optind] + musl_optpos, MB_LEN_MAX);
|
||||
if (k < 0) {
|
||||
k = 1;
|
||||
c = 0xfffd; /* replacement char */
|
||||
c = 0xFFFD; /* replacement char */
|
||||
}
|
||||
optchar = argv[musl_optind] + musl_optpos;
|
||||
musl_optpos += k;
|
||||
|
||||
Reference in New Issue
Block a user