diff options
| author | Steven Fuller <relnev@icculus.org> | 2008-05-18 05:25:08 -0700 |
|---|---|---|
| committer | Patryk Obara <dreamer.tan@gmail.com> | 2019-08-20 02:22:37 +0200 |
| commit | 40fa3975bf517841ad07db545f2bbf6b6d63a536 (patch) | |
| tree | 081a6da56f93996583536ce6f43dd83c1119ff78 | |
| parent | 25260a55dceff4565c6f49fa5773e5939531dad2 (diff) | |
Fixed prototype.
| -rw-r--r-- | src/win95/huffman.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/win95/huffman.cpp b/src/win95/huffman.cpp index 6cd642b..1ade854 100644 --- a/src/win95/huffman.cpp +++ b/src/win95/huffman.cpp @@ -61,7 +61,7 @@ static HuffEncode EncodingTable[257]; /* KJL 17:16:03 17/09/98 - Compression */ static void PerformSymbolCensus(unsigned char *sourcePtr, int length); -static int HuffItemsSortSub(const void *cmp1, const void *cmp2); +static int __cdecl HuffItemsSortSub(const void *cmp1, const void *cmp2); static void SortCensusData(void); static void BuildHuffmanTree(void); static void MakeHuffTreeFromHuffItems(HuffNode *base, HuffItem *source, int count); |
