1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-05-25 17:02:34 +03:00

Fix typos in last patch.

This commit is contained in:
Ulrich Drepper 2000-08-04 03:03:12 +00:00
parent faf8ccabe9
commit cd8b7ff913
2 changed files with 5 additions and 5 deletions

View File

@ -61,7 +61,7 @@ _IO_new_fclose (fp)
#if _LIBC #if _LIBC
/* This stream has a wide orientation. This means we have to free /* This stream has a wide orientation. This means we have to free
the conversion functions. */ the conversion functions. */
struct _IO_codecvt *cc = &fp->_codecvt; struct _IO_codecvt *cc = fp->_codecvt;
if (cc->__cd_in.__cd.__steps->__shlib_handle != NULL) if (cc->__cd_in.__cd.__steps->__shlib_handle != NULL)
{ {

View File

@ -59,7 +59,7 @@ _IO_wdo_write (fp, data, to_do)
const wchar_t *data; const wchar_t *data;
_IO_size_t to_do; _IO_size_t to_do;
{ {
struct _IO_codecvt *cc = &fp->_codecvt; struct _IO_codecvt *cc = fp->_codecvt;
if (to_do > 0) if (to_do > 0)
{ {
@ -133,7 +133,7 @@ _IO_wfile_underflow (fp)
if (fp->_wide_data->_IO_read_ptr < fp->_wide_data->_IO_read_end) if (fp->_wide_data->_IO_read_ptr < fp->_wide_data->_IO_read_end)
return *fp->_wide_data->_IO_read_ptr; return *fp->_wide_data->_IO_read_ptr;
cd = &fp->_codecvt; cd = fp->_codecvt;
/* Maybe there is something left in the external buffer. */ /* Maybe there is something left in the external buffer. */
if (fp->_IO_read_ptr < fp->_IO_read_end) if (fp->_IO_read_ptr < fp->_IO_read_end)
@ -362,7 +362,7 @@ _IO_wfile_sync (fp)
{ {
/* We have to find out how many bytes we have to go back in the /* We have to find out how many bytes we have to go back in the
external buffer. */ external buffer. */
struct _IO_codecvt *cv = &fp->_codecvt; struct _IO_codecvt *cv = fp->_codecvt;
_IO_off64_t new_pos; _IO_off64_t new_pos;
int clen = (*cv->__codecvt_do_encoding) (cv); int clen = (*cv->__codecvt_do_encoding) (cv);
@ -466,7 +466,7 @@ _IO_wfile_seekoff (fp, offset, dir, mode)
/* Adjust for read-ahead (bytes is buffer). To do this we must /* Adjust for read-ahead (bytes is buffer). To do this we must
find out which position in the external buffer corresponds to find out which position in the external buffer corresponds to
the current position in the internal buffer. */ the current position in the internal buffer. */
cv = &fp->_codecvt; cv = fp->_codecvt;
clen = (*cv->__codecvt_do_encoding) (cv); clen = (*cv->__codecvt_do_encoding) (cv);
if (clen > 0) if (clen > 0)