Remove unused variable.

This commit is contained in:
Ondřej Bílka 2013-11-18 13:12:29 +01:00
parent a7931fcfba
commit d540fc8a66
2 changed files with 6 additions and 8 deletions

View File

@ -1,3 +1,7 @@
2013-11-18 Ondřej Bílka <neleai@seznam.cz>
* tests-mbwc/tst_mbrtowc.c (tst_mbrtowc): Remove unused t_ini variable.
2013-11-17 Chris Leonard <cjl@sugarlabs.org> 2013-11-17 Chris Leonard <cjl@sugarlabs.org>
[BZ #16146] [BZ #16146]

View File

@ -16,7 +16,7 @@ tst_mbrtowc (FILE * fp, int debug_flg)
char w_flg, s_flg; char w_flg, s_flg;
char *s; char *s;
size_t n; size_t n;
char t_flg, t_ini; char t_flg;
static mbstate_t t = { 0 }; static mbstate_t t = { 0 };
mbstate_t *pt; mbstate_t *pt;
wchar_t wc, *pwc, wc_ex; wchar_t wc, *pwc, wc_ex;
@ -42,7 +42,6 @@ tst_mbrtowc (FILE * fp, int debug_flg)
s = TST_INPUT_SEQ (mbrtowc).s; s = TST_INPUT_SEQ (mbrtowc).s;
n = TST_INPUT_SEQ (mbrtowc).n; n = TST_INPUT_SEQ (mbrtowc).n;
t_flg = TST_INPUT_SEQ (mbrtowc).t_flg; t_flg = TST_INPUT_SEQ (mbrtowc).t_flg;
t_ini = TST_INPUT_SEQ (mbrtowc).t_init;
pwc = (w_flg == 0) ? NULL : &wc; pwc = (w_flg == 0) ? NULL : &wc;
if (s_flg == 0) if (s_flg == 0)
@ -56,12 +55,7 @@ tst_mbrtowc (FILE * fp, int debug_flg)
} }
pt = (t_flg == 0) ? NULL : &t; pt = (t_flg == 0) ? NULL : &t;
#if 0
if (t_ini != 0)
{
memset (&t, 0, sizeof (t));
}
#endif
TST_CLEAR_ERRNO; TST_CLEAR_ERRNO;
ret = mbrtowc (pwc, s, n, pt); ret = mbrtowc (pwc, s, n, pt);
TST_SAVE_ERRNO; TST_SAVE_ERRNO;