summaryrefslogtreecommitdiff
path: root/token.c
diff options
context:
space:
mode:
authorrsync-bugs <rsync-bugs>1997-12-15 21:41:33 +0000
committerrsync-bugs <rsync-bugs>1997-12-15 21:41:33 +0000
commit1634f4c4594055f384c81a64fa87870be2f0fe55 (patch)
tree06434190bd50abdffbd0ba7a1b5cf58cff32ec25 /token.c
parent13a1f7929ed05c652dc1b3eb4489ced01c8616f1 (diff)
downloadrsync-1634f4c4594055f384c81a64fa87870be2f0fe55.tar.gz
rsync-1634f4c4594055f384c81a64fa87870be2f0fe55.tar.bz2
rsync-1634f4c4594055f384c81a64fa87870be2f0fe55.zip
casting cleanups (rsync now compiles cleanly under IRIX 6.4)
Diffstat (limited to 'token.c')
-rw-r--r--token.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/token.c b/token.c
index 38bedd61..1aa107c9 100644
--- a/token.c
+++ b/token.c
@@ -157,13 +157,13 @@ send_deflated_token(int f, int token,
if (tx_strm.avail_in == 0 && nb != 0) {
/* give it some more input */
n = MIN(nb, CHUNK_SIZE);
- tx_strm.next_in = map_ptr(buf, offset, n);
+ tx_strm.next_in = (Bytef *)map_ptr(buf, offset, n);
tx_strm.avail_in = n;
nb -= n;
offset += n;
}
if (tx_strm.avail_out == 0) {
- tx_strm.next_out = obuf + 2;
+ tx_strm.next_out = (Bytef *)(obuf + 2);
tx_strm.avail_out = MAX_DATA_COUNT;
}
r = deflate(&tx_strm, nb? Z_NO_FLUSH: Z_PACKET_FLUSH);
@@ -185,7 +185,7 @@ send_deflated_token(int f, int token,
if (token != -1) {
/* add the data in the current block to the compressor's
history and hash table */
- tx_strm.next_in = map_ptr(buf, offset, toklen);
+ tx_strm.next_in = (Bytef *)map_ptr(buf, offset, toklen);
tx_strm.avail_in = toklen;
tx_strm.next_out = NULL;
tx_strm.avail_out = 2 * toklen;
@@ -255,7 +255,7 @@ recv_deflated_token(int f, char **data)
if ((flag & 0xC0) == DEFLATED_DATA) {
n = ((flag & 0x3f) << 8) + read_byte(f);
read_buf(f, cbuf, n);
- rx_strm.next_in = cbuf;
+ rx_strm.next_in = (Bytef *)cbuf;
rx_strm.avail_in = n;
recv_state = r_inflating;
break;
@@ -263,7 +263,7 @@ recv_deflated_token(int f, char **data)
if (recv_state == r_inflated) {
/* check previous inflated stuff ended correctly */
rx_strm.avail_in = 0;
- rx_strm.next_out = dbuf;
+ rx_strm.next_out = (Bytef *)dbuf;
rx_strm.avail_out = CHUNK_SIZE;
r = inflate(&rx_strm, Z_PACKET_FLUSH);
n = CHUNK_SIZE - rx_strm.avail_out;
@@ -303,7 +303,7 @@ recv_deflated_token(int f, char **data)
return -1 - rx_token;
case r_inflating:
- rx_strm.next_out = dbuf;
+ rx_strm.next_out = (Bytef *)dbuf;
rx_strm.avail_out = CHUNK_SIZE;
r = inflate(&rx_strm, Z_NO_FLUSH);
n = CHUNK_SIZE - rx_strm.avail_out;
@@ -337,7 +337,7 @@ see_deflate_token(char *buf, int len)
{
int r;
- rx_strm.next_in = buf;
+ rx_strm.next_in = (Bytef *)buf;
rx_strm.avail_in = len;
r = inflateIncomp(&rx_strm);
if (r != Z_OK) {