From: jacob Date: Wed, 6 Jul 2005 18:26:41 +0000 (+0000) Subject: Missing argument in MALLOC_LOG version of snrealloc() macro. X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/9af6afe3b890f550fec7cdffde8ffcfc287dee55 Missing argument in MALLOC_LOG version of snrealloc() macro. git-svn-id: svn://svn.tartarus.org/sgt/putty@6075 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/puttymem.h b/puttymem.h index b529c985..06c294d9 100644 --- a/puttymem.h +++ b/puttymem.h @@ -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