summaryrefslogtreecommitdiff
path: root/huffman.c
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2008-11-15 03:21:45 +0000
committerMatt Turner <mattst88@gmail.com>2008-11-15 03:21:45 +0000
commiteaf59c0a4f701b19168a34f0c0cb823f59fe1cc6 (patch)
tree58d9e4e91ba49f74c159ff9436cba81e194156a5 /huffman.c
parent04741fb6181f8cc1ebc6f527d8d22840d019eb7b (diff)
Remove inline keyword since functions are being called from a pointer
git-svn-id: svn://mattst88.com/svn/cleanbench/trunk@54 0d43b9a7-5ab2-4d7b-af9d-f64450cef757
Diffstat (limited to 'huffman.c')
-rw-r--r--huffman.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/huffman.c b/huffman.c
index 051fbbf..4ef7259 100644
--- a/huffman.c
+++ b/huffman.c
@@ -501,7 +501,7 @@ bitnumb=bitoffset % 8;
return((1<<bitnumb) & comparray[byteoffset] );
}
-inline double
+double
getHuffmanScore(void)
{
return results;