include/mempool.h
branchpyrit
changeset 93 96d65f841791
parent 92 9af5c039b678
child 94 4c8abb8977dc
--- 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: