summaryrefslogtreecommitdiff
path: root/src/tee.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2008-06-27 16:34:00 +0200
committerJim Meyering <meyering@redhat.com>2008-06-27 16:34:00 +0200
commit5b610a06b297b162f3c63e139e33eb0ca9113f70 (patch)
tree385e27bf4a43910b6918ee9e3dba07a6e4e9d192 /src/tee.c
parent5cc42f7de6251792a02befab4b3df7b3023135d8 (diff)
downloadcoreutils-5b610a06b297b162f3c63e139e33eb0ca9113f70.tar.xz
avoid a -Wsign-compare warning
* src/tee.c (tee_files): Swap fwrite's size/n_elem args and compare the return value against "1".
Diffstat (limited to 'src/tee.c')
-rw-r--r--src/tee.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tee.c b/src/tee.c
index 162455c53..4e46aabb5 100644
--- a/src/tee.c
+++ b/src/tee.c
@@ -190,7 +190,7 @@ tee_files (int nfiles, const char **files)
Standard output is the first one. */
for (i = 0; i <= nfiles; i++)
if (descriptors[i]
- && fwrite (buffer, 1, bytes_read, descriptors[i]) != bytes_read)
+ && fwrite (buffer, bytes_read, 1, descriptors[i]) != 1)
{
error (0, errno, "%s", files[i]);
descriptors[i] = NULL;