aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--binutils/prdbg.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/binutils/prdbg.c b/binutils/prdbg.c
index c1e4162..bb42a5b 100644
--- a/binutils/prdbg.c
+++ b/binutils/prdbg.c
@@ -742,12 +742,9 @@ pr_function_type (void *p, int argcount, bool varargs)
strcat (s, ")");
- if (! substitute_type (info, s))
- return false;
-
+ bool ret = substitute_type (info, s);
free (s);
-
- return true;
+ return ret;
}
/* Turn the top type on the stack into a reference to that type. */