Skip to content

Commit 1889880

Browse files
committed
Fix typo, in purely DEBUG code, while exploring #863
1 parent 4d833e9 commit 1889880

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utf8.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ int TY_(DecodeUTF8BytesToChar)( uint* c, uint firstByte, ctmbstr successorBytes,
317317
fprintf( stderr, "0x%02x ", firstByte );
318318
for (i = 1; i < bytes; i++)
319319
fprintf( stderr, "0x%02x ", buf[i - 1] );
320-
fprintf( stderr, " = U+%04ulx\n", n );
320+
fprintf( stderr, " = U+%04X\n", n );
321321
}
322322
#endif
323323

0 commit comments

Comments
 (0)