mirror of
https://github.com/ckolivas/lrzip.git
synced 2026-01-19 06:40:23 +01:00
Structs in stream.c can be static.
This commit is contained in:
parent
db4f9f5fea
commit
3433438a8e
4
stream.c
4
stream.c
|
|
@ -23,7 +23,7 @@
|
|||
|
||||
#define STREAM_BUFSIZE (1024 * 1024 * 10)
|
||||
|
||||
struct compress_thread{
|
||||
static struct compress_thread{
|
||||
uchar *s_buf; /* Uncompressed buffer -> Compressed buffer */
|
||||
uchar c_type; /* Compression type */
|
||||
i64 s_len; /* Data length uncompressed */
|
||||
|
|
@ -33,7 +33,7 @@ struct compress_thread{
|
|||
int stream;
|
||||
} *cthread;
|
||||
|
||||
struct uncomp_thread{
|
||||
static struct uncomp_thread{
|
||||
uchar *s_buf;
|
||||
i64 u_len, c_len;
|
||||
i64 last_head;
|
||||
|
|
|
|||
Loading…
Reference in a new issue