mirror of
https://github.com/ckolivas/lrzip.git
synced 2026-01-09 18:10:21 +01:00
Make tmp bufs uchar to avoid warnings.
This commit is contained in:
parent
b074fa70b0
commit
5c24fd02cc
|
|
@ -167,13 +167,13 @@ struct rzip_control {
|
|||
char *outfile;
|
||||
char *outdir;
|
||||
char *tmpdir; // when stdin, stdout, or test used
|
||||
char *tmp_outbuf; // Temporary file storage for stdout
|
||||
uchar *tmp_outbuf; // Temporary file storage for stdout
|
||||
i64 out_ofs; // Output offset when tmp_outbuf in use
|
||||
i64 hist_ofs; // History offset
|
||||
i64 out_len; // Total length of tmp_outbuf
|
||||
i64 out_maxlen; // The largest the tmp_outbuf can be used
|
||||
i64 out_relofs; // Relative tmp_outbuf offset when stdout has been flushed
|
||||
char *tmp_inbuf;
|
||||
uchar *tmp_inbuf;
|
||||
i64 in_ofs;
|
||||
i64 in_len;
|
||||
i64 in_maxlen;
|
||||
|
|
|
|||
Loading…
Reference in a new issue