diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-07-25 07:01:50 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-07-25 07:01:50 +0000 |
commit | f5304c15595ce7b0e1d5d9b151063db157c1ba83 (patch) | |
tree | 0813032b8196a95bcd9405724f9509c965e6079f | |
parent | 02d0efdf388dbd4824f10ba74d597753506281c5 (diff) | |
download | glibc-f5304c15595ce7b0e1d5d9b151063db157c1ba83.tar.gz glibc-f5304c15595ce7b0e1d5d9b151063db157c1ba83.tar.xz glibc-f5304c15595ce7b0e1d5d9b151063db157c1ba83.zip |
Pretty print.
-rw-r--r-- | libio/fileops.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libio/fileops.c b/libio/fileops.c index 7cc8b7c7e2..c3404c1baa 100644 --- a/libio/fileops.c +++ b/libio/fileops.c @@ -364,8 +364,7 @@ _IO_new_do_write (fp, data, to_do) const char *data; _IO_size_t to_do; { - return (to_do == 0 || new_do_write (fp, data, to_do) == to_do) - ? 0 : EOF; + return (to_do == 0 || new_do_write (fp, data, to_do) == to_do) ? 0 : EOF; } static |