Fix typo, in purely DEBUG code, while exploring #863

This commit is contained in:
Geoff McLane 2020-10-03 20:48:08 +02:00
parent 4d833e9fde
commit 188988022d

View file

@ -317,7 +317,7 @@ int TY_(DecodeUTF8BytesToChar)( uint* c, uint firstByte, ctmbstr successorBytes,
fprintf( stderr, "0x%02x ", firstByte );
for (i = 1; i < bytes; i++)
fprintf( stderr, "0x%02x ", buf[i - 1] );
fprintf( stderr, " = U+%04ulx\n", n );
fprintf( stderr, " = U+%04X\n", n );
}
#endif