From: Francois Fleuret Date: Sun, 30 Jun 2013 12:24:15 +0000 (+0200) Subject: Removed an unused variable. X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=finddup.git;a=commitdiff_plain;h=f45101063a6e7d071725d424b5841f91fe219f59 Removed an unused variable. --- 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;