]> mj.ucw.cz Git - libucw.git/blobdiff - lib/hashtable.h
install sorter-globals.h header
[libucw.git] / lib / hashtable.h
index ec581ed777bb9743826b963204bb6e940965837f..4dc223fec61b4c0f31adbdfb310d11dfb2dde8c2 100644 (file)
@@ -349,8 +349,8 @@ static inline void P(cleanup_alloc) (TAU) { }
 #endif
 
 #ifdef HASH_TABLE_ALLOC
-static inline void * P(table_alloc) (TAUC unsigned int size) { return P(alloc)(size); }
-static inline void P(table_free) (TAUC void *x) { P(free)(x); }
+static inline void * P(table_alloc) (TAUC unsigned int size) { return P(alloc)(TTC size); }
+static inline void P(table_free) (TAUC void *x) { P(free)(TTC x); }
 #else
 static inline void * P(table_alloc) (TAUC unsigned int size) { return xmalloc(size); }
 static inline void P(table_free) (TAUC void *x) { xfree(x); }