diff -r 9af5c039b678 -r 96d65f841791 include/mempool.h --- a/include/mempool.h Mon May 05 15:31:14 2008 +0200 +++ b/include/mempool.h Tue May 06 09:39:58 2008 +0200 @@ -41,7 +41,7 @@ #ifndef NO_SIMD mem = (Type *)_mm_malloc(size * typesize, align); #else - mem = (Type *)malloc(inisize * typesize); + mem = (Type *)malloc(size * typesize); #endif }; public: