From 9af6afe3b890f550fec7cdffde8ffcfc287dee55 Mon Sep 17 00:00:00 2001 From: jacob Date: Wed, 6 Jul 2005 18:26:41 +0000 Subject: [PATCH] Missing argument in MALLOC_LOG version of snrealloc() macro. git-svn-id: svn://svn.tartarus.org/sgt/putty@6075 cda61777-01e9-0310-a592-d414129be87e --- puttymem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.11.0