From 9f758fdc2205450850c83e10a231cc434807c333 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Thu, 18 Jul 2013 10:57:23 +0000 Subject: * readelf.c (process_unwind): Do not return the result of a void function. --- binutils/readelf.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'binutils/readelf.c') diff --git a/binutils/readelf.c b/binutils/readelf.c index 16fec12..c4a5982 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -7491,7 +7491,10 @@ process_unwind (FILE * file) for (i = 0; handlers[i].handler != NULL; i++) if (elf_header.e_machine == handlers[i].machtype) - return handlers[i].handler (file); + { + handlers[i].handler (file); + return; + } printf (_("\nThe decoding of unwind sections for machine type %s is not currently supported.\n"), get_machine_name (elf_header.e_machine)); -- cgit v1.1