From 112e4e98e4b59968499cd94550032ee7d63339e6 Mon Sep 17 00:00:00 2001 From: meep-eep Date: Thu, 13 Oct 2005 00:01:33 +0000 Subject: [PATCH] . git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1894 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/libs/uio/hashtable.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sc2/src/sc2code/libs/uio/hashtable.h b/sc2/src/sc2code/libs/uio/hashtable.h index fc89cee06..e649bea15 100644 --- a/sc2/src/sc2code/libs/uio/hashtable.h +++ b/sc2/src/sc2code/libs/uio/hashtable.h @@ -48,9 +48,9 @@ # define HashTable_EQUAL(hashTable, hashKey1, hashKey2) \ (hashTable)->equalFunction(hashKey1, hashKey2) # define HashTable_COPY(hashTable, hashKey) \ - (hashTable)->copyFunction(hashKey) + (hashTable)->copyFunction(hashTable, hashKey) # define HashTable_FREE(hashTable, hashKey) \ - (hashTable)->copyFunction(hashKey) + (hashTable)->freeFunction(hashTable, hashKey) #endif