From 681627531b56d2f47bdef803cbeef2d6e842a126 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 6 Feb 2001 05:48:26 +0000 Subject: Update. * elf/cache.c (print_entry): Use PRIx64 instead of Lx in printf string. Include instead of . --- ChangeLog | 3 +++ elf/cache.c | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 14e40269da..24642925c4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2001-02-05 Ulrich Drepper + * elf/cache.c (print_entry): Use PRIx64 instead of Lx in printf + string. Include instead of . + * localedata/Makefile (tests): Add bug-iconv-trans. Define bug-iconv-trans-ENV. * localedata/bug-iconv-trans.c: New file. diff --git a/elf/cache.c b/elf/cache.c index 821dda93e5..d3c7f81c2b 100644 --- a/elf/cache.c +++ b/elf/cache.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger , 1999. @@ -20,12 +20,12 @@ #include #include #include +#include #include #include #include #include #include -#include #include #include #include @@ -84,7 +84,7 @@ print_entry (const char *lib, int flag, uint64_t hwcap, const char *key) break; } if (hwcap != 0) - printf (", hwcap: 0x%Lx", hwcap); + printf (", hwcap: 0x%" PRIx64, hwcap); printf (") => %s\n", key); } -- cgit v1.2.3