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

From-SVN: r73087
This commit is contained in:
Richard Henderson 2003-10-30 08:36:27 -08:00 committed by Richard Henderson
parent 99e7f13175
commit 671ca9ec83
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-10-30 Richard Henderson <rth@redhat.com>
* cppcharset.c (one_utf8_to_utf16): Initialize 's' to silence warning.
2003-10-30 Ulrich Weigand <uweigand@de.ibm.com>
* config/s390/s390.c (struct machine_function): Use save_return_addr_p

View File

@ -337,7 +337,7 @@ one_utf8_to_utf16 (iconv_t bigend, const uchar **inbufp, size_t *inbytesleftp,
uchar **outbufp, size_t *outbytesleftp)
{
int rval;
cppchar_t s;
cppchar_t s = 0;
const uchar *save_inbuf = *inbufp;
size_t save_inbytesleft = *inbytesleftp;
uchar *outbuf = *outbufp;