* 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@1187 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
a8117f20d5
commit
858a800f5d
|
@ -1,3 +1,8 @@
|
|||
2013-07-11 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||
|
||||
* fileio.c (elf2b): replace elf_getshstrndx() by
|
||||
elf_getshdrstrndx() as the former one is deprecated
|
||||
|
||||
2013-06-19 Rene Liebscher <R.Liebscher@gmx.de>
|
||||
|
||||
use bitbanging on ftdi mpsse when wrong pins are used
|
||||
|
|
|
@ -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));
|
||||
|
|
Loading…
Reference in New Issue