From 4dc003fffabd35361fb77a40f077805d21184f9c Mon Sep 17 00:00:00 2001 From: Christophe Lyon Date: Fri, 12 Oct 2018 07:38:05 +0000 Subject: [PATCH] Fix typo in previous commit. 2018-10-12 Christophe Lyon PR c++/87364 * c-pretty-print.c (c_pretty_printer::constant): Fix typo. From-SVN: r265078 --- gcc/c-family/ChangeLog | 5 +++++ gcc/c-family/c-pretty-print.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index 3d5fd4faf72..d5f361947ce 100644 --- a/gcc/c-family/ChangeLog +++ b/gcc/c-family/ChangeLog @@ -1,3 +1,8 @@ +2018-10-12 Christophe Lyon + + PR c++/87364 + * c-pretty-print.c (c_pretty_printer::constant): Fix typo. + 2018-10-11 Will Wray PR c++/87364 diff --git a/gcc/c-family/c-pretty-print.c b/gcc/c-family/c-pretty-print.c index bdd5567614d..a13cd849053 100644 --- a/gcc/c-family/c-pretty-print.c +++ b/gcc/c-family/c-pretty-print.c @@ -1138,7 +1138,7 @@ c_pretty_printer::constant (tree e) else if (type == char_type_node) pp_c_character_constant (this, e); else if (TREE_CODE (type) == ENUMERAL_TYPE) - pp_c_enumeration_constant (this, e)) + pp_c_enumeration_constant (this, e); else pp_c_integer_constant (this, e); } -- 2.30.2