* fileio.c (elf2b): replace elf_getshstrndx() by

elf_getshdrstrndx() as the former one is deprecated



git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1187 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
joerg_wunsch
2013-07-11 21:43:11 +00:00
parent 481a5d0b42
commit 2d503ce900
2 changed files with 6 additions and 1 deletions

View File

@@ -944,7 +944,7 @@ static int elf2b(char * infile, FILE * inf,
}
size_t sndx;
if (elf_getshstrndx(e, &sndx) != 0) {
if (elf_getshdrstrndx(e, &sndx) != 0) {
fprintf(stderr,
"%s: ERROR: Error obtaining section name string table: %s\n",
progname, elf_errmsg(-1));