diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-08-11 13:58:00 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-08-11 13:58:00 +0000 |
commit | a2bde807bfaff3c016183a02a1f6a46764480410 (patch) | |
tree | 76bb0da42687258c5b6a94ecba6ee8f0b0f34177 | |
parent | a5f4e34a264b7cd296f8ca890ca4eaa1d0f99317 (diff) | |
download | glibc-a2bde807bfaff3c016183a02a1f6a46764480410.zip glibc-a2bde807bfaff3c016183a02a1f6a46764480410.tar.gz glibc-a2bde807bfaff3c016183a02a1f6a46764480410.tar.bz2 |
Update.
1998-08-11 13:57 Ulrich Drepper <drepper@cygnus.com>
* libio/fileops.c (_IO_file_sync): Use _IO_ssize_t for delta, not
_IO_size_t.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | libio/fileops.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +1998-08-11 13:57 Ulrich Drepper <drepper@cygnus.com> + + * libio/fileops.c (_IO_file_sync): Use _IO_ssize_t for delta, not + _IO_size_t. + 1998-08-10 15:49 Ulrich Drepper <drepper@cygnus.com> * include/dirent.h: Protect from double inclusion. diff --git a/libio/fileops.c b/libio/fileops.c index 0192531..596d970 100644 --- a/libio/fileops.c +++ b/libio/fileops.c @@ -431,7 +431,7 @@ int _IO_file_sync (fp) _IO_FILE *fp; { - _IO_size_t delta; + _IO_ssize_t delta; int retval = 0; /* char* ptr = cur_ptr(); */ |