diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-03-31 22:46:26 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-03-31 22:46:26 +0000 |
commit | f5baa731d07c8d9b13bd04f4532f714cddfc8da2 (patch) | |
tree | 817cb85560b5d738c5db845cedf5e27190cd23df /iconvdata | |
parent | 3331899af3fcaf628e118686a4ebbf592dca9ec8 (diff) | |
download | glibc-f5baa731d07c8d9b13bd04f4532f714cddfc8da2.tar glibc-f5baa731d07c8d9b13bd04f4532f714cddfc8da2.tar.gz glibc-f5baa731d07c8d9b13bd04f4532f714cddfc8da2.tar.bz2 glibc-f5baa731d07c8d9b13bd04f4532f714cddfc8da2.zip |
Update.
* sysdeps/generic/dl-sysdep.c (_dl_important_hwcaps): Fix typo.
* iconvdata/gap.pl: Avoid using %#06x.
1998-03-31 19:55 Zack Weinberg <zack@rabi.phys.columbia.edu>
* Makerules: Use $? instead of S^ when invoking ar.
1998-03-31 Ulrich Drepper <drepper@cygnus.com>
Diffstat (limited to 'iconvdata')
-rw-r--r-- | iconvdata/gap.pl | 4 |
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); |