diff options
author | Rob Landley <rob@landley.net> | 2007-01-08 04:26:01 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-01-08 04:26:01 -0500 |
commit | 3388f4c4de628702ba77e2fec941c809877ad576 (patch) | |
tree | aa118caeb97fa691716aaf3d6089ecba96da9428 /lib/functions.c | |
parent | d3e9d64b17517dcbe0af8b055c1d282e63ba6534 (diff) | |
download | toybox-3388f4c4de628702ba77e2fec941c809877ad576.tar.gz |
xread() and xwrite() should take void *, not char *.
Diffstat (limited to 'lib/functions.c')
-rw-r--r-- | lib/functions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/functions.c b/lib/functions.c index e476557c..ef787617 100644 --- a/lib/functions.c +++ b/lib/functions.c @@ -214,12 +214,12 @@ ssize_t writeall(int fd, void *buf, size_t count) } // Die if we can't fill a buffer -void xread(int fd, char *buf, size_t count) +void xread(int fd, void *buf, size_t count) { if (count != readall(fd, buf, count)) perror_exit("xread"); } -void xwrite(int fd, char *buf, size_t count) +void xwrite(int fd, void *buf, size_t count) { if (count != writeall(fd, buf, count)) perror_exit("xwrite"); } |