Re: Add --unicode option

At low optimisation levels gcc may warn.

	* strings.c (print_unicode_stream_body): Avoid bogus "may be
	used unitialised" warning.
This commit is contained in:
Alan Modra 2021-11-10 10:26:10 +10:30
parent b790c47da3
commit a9a09f5114

View File

@ -924,7 +924,7 @@ print_unicode_stream_body (const char * filename,
uint num_read = 0;
uint num_chars = 0;
uint num_print = 0;
int c;
int c = 0;
/* Find a series of string_min characters. Put them into print_buf. */
do