mirror of
https://github.com/ckolivas/lrzip.git
synced 2026-02-20 06:14:17 +01:00
Clean up unused variables.
This commit is contained in:
parent
9499a7b453
commit
82a3bd3028
10
rzip.c
10
rzip.c
|
|
@ -732,15 +732,13 @@ void rzip_fd(int fd_in, int fd_out)
|
|||
* If file size < compression window, can't do
|
||||
*/
|
||||
struct timeval current, start, last;
|
||||
struct stat s, s2;
|
||||
struct rzip_state *st;
|
||||
char md5_resblock[MD5_DIGEST_SIZE];
|
||||
i64 len = 0, last_chunk = 0;
|
||||
int pass = 0, passes, j;
|
||||
unsigned int eta_hours, eta_minutes, eta_seconds, elapsed_hours,
|
||||
elapsed_minutes, elapsed_seconds;
|
||||
double finish_time, elapsed_time, chunkmbs;
|
||||
char md5_resblock[MD5_DIGEST_SIZE];
|
||||
struct rzip_state *st;
|
||||
struct statvfs fbuf;
|
||||
struct stat s, s2;
|
||||
double chunkmbs;
|
||||
i64 free_space;
|
||||
|
||||
md5_init_ctx (&control.ctx);
|
||||
|
|
|
|||
Loading…
Reference in a new issue