* cppcharset.c (one_utf8_to_utf32): Initialize 's' to silence warning.

From-SVN: r72927
This commit is contained in:
Jan Hubicka 2003-10-25 17:12:01 +02:00 committed by Jan Hubicka
parent b3cd99cdbd
commit bd18496b13
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-10-25 Jan Hubicka <jh@suse.cz>
* cppcharset.c (one_utf8_to_utf32): Initialize 's' to silence warning.
2003-10-25 Eric Botcazou <ebotcazou@libertysurf.fr>
PR target/12712

View File

@ -280,7 +280,7 @@ one_utf8_to_utf32 (iconv_t bigend, const uchar **inbufp, size_t *inbytesleftp,
uchar **outbufp, size_t *outbytesleftp)
{
uchar *outbuf;
cppchar_t s;
cppchar_t s = 0;
int rval;
/* Check for space first, since we know exactly how much we need. */