Fix sscanf argument type for format %x

This commit is contained in:
Peter Colberg 2015-10-30 15:27:18 -04:00
parent 14b57791d8
commit 4b16193a25

View File

@ -7,7 +7,7 @@ int main(int argc, char **argv)
int i; int i;
for (i = 1; i < argc; ++i) { for (i = 1; i < argc; ++i) {
int c; unsigned int c;
if (!strcmp(argv[i], "-V")) { if (!strcmp(argv[i], "-V")) {
printf("utf8proc version %s\n", utf8proc_version()); printf("utf8proc version %s\n", utf8proc_version());
continue; continue;