diff options
author | Andreas Jaeger <aj@suse.de> | 2012-05-17 22:00:57 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2012-05-17 22:00:57 +0200 |
commit | 59910343fc16d7b9677a780d8f362316c2b19c93 (patch) | |
tree | 2c6b26df82e363822d5ec1d538822d049fc71636 /elf | |
parent | 2e4c1e9edb2a0f25a4d8de961dd4b7518c88bc54 (diff) | |
download | glibc-59910343fc16d7b9677a780d8f362316c2b19c93.tar glibc-59910343fc16d7b9677a780d8f362316c2b19c93.tar.gz glibc-59910343fc16d7b9677a780d8f362316c2b19c93.tar.bz2 glibc-59910343fc16d7b9677a780d8f362316c2b19c93.zip |
Fix warning
Fixes:
tst-relsort1.c:6:1: warning: function declaration isn’t a prototype
[-Wstrict-prototypes]
Diffstat (limited to 'elf')
-rw-r--r-- | elf/tst-relsort1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/tst-relsort1.c b/elf/tst-relsort1.c index 972100c0e9..a87b138280 100644 --- a/elf/tst-relsort1.c +++ b/elf/tst-relsort1.c @@ -3,7 +3,7 @@ static int -do_test () +do_test (void) { const char lib[] = "$ORIGIN/tst-relsort1mod1.so"; void *h = dlopen (lib, RTLD_NOW); |