X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Fhashtable.h;h=4dc223fec61b4c0f31adbdfb310d11dfb2dde8c2;hb=c5fbc7b75705d1f7a322ad73e6055284a3b94e73;hp=f57412b70a103120c519749f8a2d95b876af4b03;hpb=d81211bb8cb5fa357e7a6046e284ba0ff5a6cc28;p=libucw.git diff --git a/lib/hashtable.h b/lib/hashtable.h index f57412b7..4dc223fe 100644 --- a/lib/hashtable.h +++ b/lib/hashtable.h @@ -350,7 +350,7 @@ static inline void P(cleanup_alloc) (TAU) { } #ifdef HASH_TABLE_ALLOC 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)(x); } +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); }