diff options
Diffstat (limited to '')
-rw-r--r-- | tools/gpgsplit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gpgsplit.c b/tools/gpgsplit.c index 856e9aa29..a91635092 100644 --- a/tools/gpgsplit.c +++ b/tools/gpgsplit.c @@ -472,7 +472,7 @@ handle_bzip2(int algo,FILE *fpin,FILE *fpout) { n = bzs.avail_in; if (!n) - bzs.next_in = (Bytef *) inbuf; + bzs.next_in = inbuf; count = inbufsize - n; for (nread=0; nread < count && (c=getc (fpin)) != EOF; @@ -487,7 +487,7 @@ handle_bzip2(int algo,FILE *fpin,FILE *fpout) } bzs.avail_in = n; } - bzs.next_out = (Bytef *) outbuf; + bzs.next_out = outbuf; bzs.avail_out = outbufsize; if (!zinit_done) |