Missing argument in MALLOC_LOG version of snrealloc() macro.
authorjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Wed, 6 Jul 2005 18:26:41 +0000 (18:26 +0000)
committerjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Wed, 6 Jul 2005 18:26:41 +0000 (18:26 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/putty@6075 cda61777-01e9-0310-a592-d414129be87e

puttymem.h

index b529c98..06c294d 100644 (file)
@@ -14,7 +14,7 @@
 #define smalloc(z) (mlog(__FILE__,__LINE__), safemalloc(z,1))
 #define snmalloc(z,s) (mlog(__FILE__,__LINE__), safemalloc(z,s))
 #define srealloc(y,z) (mlog(__FILE__,__LINE__), saferealloc(y,z,1))
-#define snrealloc(y,z) (mlog(__FILE__,__LINE__), saferealloc(y,z,s))
+#define snrealloc(y,z,s) (mlog(__FILE__,__LINE__), saferealloc(y,z,s))
 #define sfree(z) (mlog(__FILE__,__LINE__), safefree(z))
 void mlog(char *, int);
 #else