chg: pointer should be unsigned
This commit is contained in:
@@ -622,7 +622,7 @@ int hextobinarray(char *target, char *source)
|
|||||||
else if (x >= 'A' && x <= 'F')
|
else if (x >= 'A' && x <= 'F')
|
||||||
x -= 'A' - 10;
|
x -= 'A' - 10;
|
||||||
else {
|
else {
|
||||||
printf("Discovered unknown character %c %d at idx % " PRId32 " of %s\n", x, x, source - start, start);
|
printf("Discovered unknown character %c %d at idx % " PRIu32 " of %s\n", x, x, source - start, start);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
// output
|
// output
|
||||||
|
|||||||
Reference in New Issue
Block a user