Commit 753a73c8 by Kaveh R. Ghazi Committed by Kaveh Ghazi

Fix a typo:

	* c-common.c (check_format_info): Don't check for the 'x' format
	character twice, instead check for 'x' and 'X'

From-SVN: r19396
parent b9e5c220
Fri Apr 24 09:22:23 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* c-common.c (check_format_info): Don't check for the 'x' format
character twice, instead check for 'x' and 'X'
Fri Apr 24 08:02:30 1998 Manfred Hollstein <manfred@s-direktnet.de>
* Makefile.in (libgcc2.ready): Add explicit dependancy from
......
......@@ -1644,7 +1644,7 @@ check_format_info (info, params)
continue;
integral_format = (format_char == 'd' || format_char == 'i'
|| format_char == 'o' || format_char == 'u'
|| format_char == 'x' || format_char == 'x');
|| format_char == 'x' || format_char == 'X');
if (precise && index (flag_chars, '0') != 0 && integral_format)
warning ("`0' flag ignored with precision specifier and `%c' format",
format_char);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment