From f45101063a6e7d071725d424b5841f91fe219f59 Mon Sep 17 00:00:00 2001 From: Francois Fleuret Date: Sun, 30 Jun 2013 14:24:15 +0200 Subject: [PATCH] Removed an unused variable. --- finddup.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/finddup.c b/finddup.c index 124eaad..0598612 100644 --- a/finddup.c +++ b/finddup.c @@ -511,7 +511,7 @@ void start(const char *dirname1, const char *dirname2) { struct progress_state progress_state; int not_in, found; int nb_groups, nb_nodes; - int list1_length, previous_progress; + int list1_length; char *buffer1 = safe_malloc(sizeof(char) * READ_BUFFER_SIZE); char *buffer2 = safe_malloc(sizeof(char) * READ_BUFFER_SIZE); @@ -541,7 +541,6 @@ void start(const char *dirname1, const char *dirname2) { } nb_groups = 0; - previous_progress = -1; nb_nodes = 0; progress_state.bar_width = -1; -- 2.20.1