diff options
Diffstat (limited to 'gdb/p-typeprint.c')
-rw-r--r-- | gdb/p-typeprint.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gdb/p-typeprint.c b/gdb/p-typeprint.c index a2cfadb4d40..d8ea0d4b68c 100644 --- a/gdb/p-typeprint.c +++ b/gdb/p-typeprint.c @@ -170,11 +170,9 @@ pascal_type_print_method_args (physname, methodname, stream) char *argname; fputs_filtered (" (", stream); /* we must demangle this */ - while isdigit - (physname[0]) + while (isdigit (physname[0])) { - while isdigit - (physname[len]) + while (isdigit (physname[len])) { len++; } |