summaryrefslogtreecommitdiffstats
path: root/programs/fullbench.c
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2014-06-22 10:25:04 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2014-06-22 10:25:04 (GMT)
commitda5373197e84ee49d75b8334d4510689731d6e90 (patch)
tree991ff0ab40b967176ba425db19619d00a70a85d7 /programs/fullbench.c
parent8d66dd7cd52c69d4542eb910bd8743ef95fa9d8c (diff)
downloadlz4-da5373197e84ee49d75b8334d4510689731d6e90.zip
lz4-da5373197e84ee49d75b8334d4510689731d6e90.tar.gz
lz4-da5373197e84ee49d75b8334d4510689731d6e90.tar.bz2
Fixed : issue 52 (reported by Ludwig Strigeus)
Diffstat (limited to 'programs/fullbench.c')
-rw-r--r--programs/fullbench.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/programs/fullbench.c b/programs/fullbench.c
index f8a85ef..0ed8488 100644
--- a/programs/fullbench.c
+++ b/programs/fullbench.c
@@ -371,8 +371,6 @@ int fullSpeedBench(char** fileNamesTable, int nbFiles)
"LZ4_decompress_safe", "LZ4_decompress_safe_withPrefix64k", "LZ4_decompress_safe_usingDict", "LZ4_decompress_safe_partial" };
double totalDTime[NB_DECOMPRESSION_ALGORITHMS+1] = {0};
- U64 totals = 0;
-
// Loop for each file
while (fileIdx<nbFiles)
@@ -609,7 +607,6 @@ int fullSpeedBench(char** fileNamesTable, int nbFiles)
totalDTime[dAlgNb] += bestTime;
}
- totals += benchedSize;
}
free(orig_buff);