diff options
author | Mark Wielaard <mjw@redhat.com> | 2015-09-22 22:27:01 +0200 |
---|---|---|
committer | Mark Wielaard <mjw@redhat.com> | 2015-09-23 15:50:55 +0200 |
commit | 1ccdfb683ad6c7e59793136c3a657ddf131cafd1 (patch) | |
tree | d5d24ce4ca0beec37e1ee2fe1f8a36af0e218e28 /libelf/elf_error.c | |
parent | e260d79d73be07aee2860c5a5baf4f12c230ad6b (diff) | |
download | elfutils-1ccdfb683ad6c7e59793136c3a657ddf131cafd1.tar.gz |
Remove old-style function definitions.
We already require -std=gnu99 and old-style function definitions might
hide some compiler warnings.
Signed-off-by: Mark Wielaard <mjw@redhat.com>
Diffstat (limited to 'libelf/elf_error.c')
-rw-r--r-- | libelf/elf_error.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/libelf/elf_error.c b/libelf/elf_error.c index aa7f9173..d6e5183f 100644 --- a/libelf/elf_error.c +++ b/libelf/elf_error.c @@ -1,5 +1,5 @@ /* Error handling in libelf. - Copyright (C) 1998-2010 Red Hat, Inc. + Copyright (C) 1998-2010, 2015 Red Hat, Inc. This file is part of elfutils. Written by Ulrich Drepper <drepper@redhat.com>, 1998. @@ -283,16 +283,14 @@ static const uint_fast16_t msgidx[ELF_E_NUM] = void -__libelf_seterrno (value) - int value; +__libelf_seterrno (int value) { global_error = value >= 0 && value < nmsgidx ? value : ELF_E_UNKNOWN_ERROR; } const char * -elf_errmsg (error) - int error; +elf_errmsg (int error) { int last_error = global_error; |