about summary refs log tree commit diff
path: root/iconvdata/gap.pl
diff options
context:
space:
mode:
Diffstat (limited to 'iconvdata/gap.pl')
-rw-r--r--iconvdata/gap.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/iconvdata/gap.pl b/iconvdata/gap.pl
index ed2d295c90..8d595e327d 100644
--- a/iconvdata/gap.pl
+++ b/iconvdata/gap.pl
@@ -4,7 +4,7 @@ while (<>) {
   local($u)=hex($ucs);
   if ($u - $last > 6) {
     if ($last != 0) {
-      printf ("  { start: %#06x, end: %#06x, idx: %5d },\n",
+      printf ("  { start: 0x%04x, end: 0x%04x, idx: %5d },\n",
 	      $first, $last, $idx - $first);
       $idx += $last - $first + 1;
     }
@@ -12,5 +12,5 @@ while (<>) {
   }
   $last=$u;
 }
-printf ("  { start: %#06x, end: %#06x, idx: %5d },\n",
+printf ("  { start: 0x%04x, end: 0x%04x, idx: %5d },\n",
 	$first, $last, $idx - $first);