From 34edabbf495e0222c59937973ab2bfecc8e32dd6 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Fri, 14 Nov 2008 23:03:36 +0000 Subject: Remove adjust struct member in favor of a local static variable git-svn-id: svn://mattst88.com/svn/cleanbench/trunk@44 0d43b9a7-5ab2-4d7b-af9d-f64450cef757 --- huffman.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'huffman.c') diff --git a/huffman.c b/huffman.c index c6c85e7..168f29a 100644 --- a/huffman.c +++ b/huffman.c @@ -62,12 +62,12 @@ DoHuffman(void) { const char* context = "CPU:Huffman"; HuffStruct* lochuffstruct = &global_huffstruct; - clock_t total_time = 0; - int iterations = 0; char* comparray = NULL; char* decomparray = NULL; char* plaintext = NULL; - + clock_t total_time = 0; + int iterations = 0; + static int is_adjusted = FALSE; /* ** Allocate memory for the plaintext and the compressed text. @@ -127,8 +127,8 @@ DoHuffman(void) /* ** See if we need to perform self adjustment loop. */ - if (lochuffstruct->adjust == FALSE) { - lochuffstruct->adjust = TRUE; + if (is_adjusted == FALSE) { + is_adjusted = TRUE; /* ** Do self-adjustment. This involves initializing the ** # of loops and increasing the loop count until we -- cgit v1.2.3