Fix typo in previous commit.

2018-10-12  Christophe Lyon  <christophe.lyon@linaro.org>

	PR c++/87364
	* c-pretty-print.c (c_pretty_printer::constant): Fix typo.

From-SVN: r265078
This commit is contained in:
Christophe Lyon 2018-10-12 07:38:05 +00:00 committed by Christophe Lyon
parent 79371671cb
commit 4dc003fffa
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2018-10-12 Christophe Lyon <christophe.lyon@linaro.org>
PR c++/87364
* c-pretty-print.c (c_pretty_printer::constant): Fix typo.
2018-10-11 Will Wray <wjwray@gmail.com>
PR c++/87364

View file

@ -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);
}