summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-07-17 05:37:56 +0000
committerAndrew Tridgell <tridge@samba.org>1998-07-17 05:37:56 +0000
commiteb601ffeb8a0145a37862852a5b2afb799d3b23d (patch)
tree568dd72cb9d77714fefd9f2dddc8ee29c75e0c31 /io.c
parent8d72ef6e5258fe6a3174db822e5a6b1f7a32e252 (diff)
downloadrsync-eb601ffeb8a0145a37862852a5b2afb799d3b23d.tar.gz
code style change
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index c42c1c7e..c2c43ca7 100644
--- a/io.c
+++ b/io.c
@@ -238,7 +238,7 @@ static void readfd(int fd,char *buffer,int N)
int ret;
int total=0;
- if (read_buffer_len < N && N < 1024) {
+ if ((read_buffer_len < N) && (N < 1024)) {
read_check(buffer_f_in);
}