Correction to last commit.

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1896 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
meep-eep
2005-10-13 02:21:14 +00:00
parent d2c9930ba0
commit c2840d712d
+2 -2
View File
@@ -48,9 +48,9 @@
# define HashTable_EQUAL(hashTable, hashKey1, hashKey2) \
(hashTable)->equalFunction(hashKey1, hashKey2)
# define HashTable_COPY(hashTable, hashKey) \
(hashTable)->copyFunction(hashTable, hashKey)
(hashTable)->copyFunction(hashKey)
# define HashTable_FREE(hashTable, hashKey) \
(hashTable)->freeFunction(hashTable, hashKey)
(hashTable)->freeFunction(hashKey)
#endif