From: Ulrich Drepper Date: Fri, 26 Nov 1999 06:48:04 +0000 (+0000) Subject: (EMIT_SHIFT_TO_INIT): Fix typo. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7beb8e85b5e42c8b4e54023791512c897f2e94bc;p=thirdparty%2Fglibc.git (EMIT_SHIFT_TO_INIT): Fix typo. --- diff --git a/iconvdata/iso-2022-jp.c b/iconvdata/iso-2022-jp.c index e116b919b38..40c0e57ca85 100644 --- a/iconvdata/iso-2022-jp.c +++ b/iconvdata/iso-2022-jp.c @@ -212,7 +212,7 @@ gconv_end (struct gconv_step *data) *outbuf++ = ESC; \ *outbuf++ = '('; \ *outbuf++ = 'B'; \ - if (data->__is_last) \ + if (data->is_last) \ *written += 3; \ data->outbuf = outbuf; \ /* Note that this also clears the G2 designation. */ \ diff --git a/iconvdata/iso-2022-kr.c b/iconvdata/iso-2022-kr.c index eefdf55d03b..00a1423a2e2 100644 --- a/iconvdata/iso-2022-kr.c +++ b/iconvdata/iso-2022-kr.c @@ -91,7 +91,7 @@ enum { \ /* Write out the shift sequence. */ \ *outbuf++ = SI; \ - if (data->__is_last) \ + if (data->is_last) \ *written += 1; \ data->outbuf = outbuf; \ data->statep->count = ASCII_set; \