aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-10-26 07:57:27 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-10-26 07:57:27 +0000
commit568b410a3527aa6f05a2bbaef501119a03b01e8c (patch)
treebe89ff3f3980dc527736fdb5cea96a19f456047a /util-linux
parentc93d5485af47262459357a79b74be7c5072d6425 (diff)
downloadbusybox-w32-568b410a3527aa6f05a2bbaef501119a03b01e8c.tar.gz
busybox-w32-568b410a3527aa6f05a2bbaef501119a03b01e8c.tar.bz2
busybox-w32-568b410a3527aa6f05a2bbaef501119a03b01e8c.zip
Silence a warning,
git-svn-id: svn://busybox.net/trunk/busybox@1249 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/rdate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/rdate.c b/util-linux/rdate.c
index 915c4bdd4..80b37de37 100644
--- a/util-linux/rdate.c
+++ b/util-linux/rdate.c
@@ -68,7 +68,7 @@ time_t askremotedate(char *host)
68 close(fd); 68 close(fd);
69 return(-1); 69 return(-1);
70 } 70 }
71 if (read(fd, &nett, 4) != 4) { /* read time from server */ 71 if (read(fd, (void *)&nett, 4) != 4) { /* read time from server */
72 close(fd); 72 close(fd);
73 errorMsg("%s did not send the complete time\n", host); 73 errorMsg("%s did not send the complete time\n", host);
74 } 74 }