diff options
Diffstat (limited to 'gcc/c-objc-common.c')
-rw-r--r-- | gcc/c-objc-common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-objc-common.c b/gcc/c-objc-common.c index d011ef4f5af..3bc89ee12d4 100644 --- a/gcc/c-objc-common.c +++ b/gcc/c-objc-common.c @@ -290,14 +290,14 @@ c_tree_printer (pretty_printer *pp, text_info *text) case 'D': case 'F': if (DECL_NAME (t)) - n = (*lang_hooks.decl_printable_name) (t, 2); + n = lang_hooks.decl_printable_name (t, 2); break; case 'T': if (TREE_CODE (t) == TYPE_DECL) { if (DECL_NAME (t)) - n = (*lang_hooks.decl_printable_name) (t, 2); + n = lang_hooks.decl_printable_name (t, 2); } else { |