From 188988022da4a64d80bc4a2eba21c33d57eb5152 Mon Sep 17 00:00:00 2001 From: Geoff McLane Date: Sat, 3 Oct 2020 20:48:08 +0200 Subject: [PATCH] Fix typo, in purely DEBUG code, while exploring #863 --- src/utf8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utf8.c b/src/utf8.c index 1ed423e..b12b29b 100644 --- a/src/utf8.c +++ b/src/utf8.c @@ -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