From acc0ef3ac80f18e349c6d0252177707105c0a29c Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Sun, 26 Jan 2020 20:19:19 +0200 Subject: xz: Move flush_needed from mytime.h to file_pair struct in file_io.h. --- src/xz/mytime.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/xz/mytime.c') diff --git a/src/xz/mytime.c b/src/xz/mytime.c index 95138840..573b97de 100644 --- a/src/xz/mytime.c +++ b/src/xz/mytime.c @@ -17,7 +17,6 @@ #endif uint64_t opt_flush_timeout = 0; -bool flush_needed; static uint64_t start_time; static uint64_t next_flush; @@ -53,7 +52,6 @@ mytime_set_start_time(void) { start_time = mytime_now(); next_flush = start_time + opt_flush_timeout; - flush_needed = false; return; } @@ -69,7 +67,6 @@ extern void mytime_set_flush_time(void) { next_flush = mytime_now() + opt_flush_timeout; - flush_needed = false; return; } -- cgit v1.2.3