mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
Missing argument in MALLOC_LOG version of snrealloc() macro.
[originally from svn r6075]
This commit is contained in:
parent
7d49271ada
commit
eec73ea3b6
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user