From: Ulrich Drepper Date: Thu, 12 Jan 2006 00:25:13 +0000 (+0000) Subject: * elf/check-textrel.c: Add missing argument. X-Git-Tag: upstream/2.20~8900 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=37169cccddb401c9efeac446703dff7f815b5d1d;p=platform%2Fupstream%2Flinaro-glibc.git * elf/check-textrel.c: Add missing argument. --- diff --git a/ChangeLog b/ChangeLog index e24117b..aca2642 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2006-01-11 Ulrich Drepper + * elf/check-textrel.c: Add missing argument. + * Makerules: Define build-module-asneeded. * iconvdata/extra-module.mk: Use build-module-asneeded. needed. diff --git a/elf/check-textrel.c b/elf/check-textrel.c index a39174d..2b9639f 100644 --- a/elf/check-textrel.c +++ b/elf/check-textrel.c @@ -87,7 +87,7 @@ AB(handle_file) (const char *fname, int fd) && (SWAP (phdr[cnt].p_flags) & (PF_X | PF_W)) == (PF_X | PF_W)) { printf ("%s: segment %zu is executable and writable\n", - fname); + fname, cnt); return 1; }