mirror of
https://github.com/ckolivas/lrzip.git
synced 2026-02-19 22:04:15 +01:00
Move const one_g to correct place.
This commit is contained in:
parent
d067a6ea9e
commit
823a51cc74
3
lrzip.c
3
lrzip.c
|
|
@ -41,6 +41,7 @@
|
|||
#include "rzip.h"
|
||||
#include "runzip.h"
|
||||
#include "util.h"
|
||||
#include "stream.h"
|
||||
#include "liblrzip.h" /* flag defines */
|
||||
|
||||
#define MAGIC_LEN (39)
|
||||
|
|
@ -240,8 +241,6 @@ int open_tmpoutfile(rzip_control *control)
|
|||
return fd_out;
|
||||
}
|
||||
|
||||
extern const one_g;
|
||||
|
||||
static void fwrite_stdout(void *buf, i64 len)
|
||||
{
|
||||
uchar *offset_buf = buf;
|
||||
|
|
|
|||
1
stream.h
1
stream.h
|
|
@ -37,5 +37,6 @@ int write_stream(rzip_control *control, void *ss, int streamno, uchar *p, i64 le
|
|||
i64 read_stream(rzip_control *control, void *ss, int streamno, uchar *p, i64 len);
|
||||
int close_stream_out(rzip_control *control, void *ss);
|
||||
int close_stream_in(void *ss);
|
||||
const i64 one_g;
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue