Skip to content
This repository has been archived by the owner on Apr 19, 2024. It is now read-only.

Commit

Permalink
Missing argument in MALLOC_LOG version of snrealloc() macro.
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.tartarus.org/sgt/putty@6075 cda61777-01e9-0310-a592-d414129be87e
  • Loading branch information
jacob committed Jul 6, 2005
1 parent 39b8712 commit 9af6afe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion puttymem.h
Expand Up @@ -14,7 +14,7 @@
#define smalloc(z) (mlog(__FILE__,__LINE__), safemalloc(z,1)) #define smalloc(z) (mlog(__FILE__,__LINE__), safemalloc(z,1))
#define snmalloc(z,s) (mlog(__FILE__,__LINE__), safemalloc(z,s)) #define snmalloc(z,s) (mlog(__FILE__,__LINE__), safemalloc(z,s))
#define srealloc(y,z) (mlog(__FILE__,__LINE__), saferealloc(y,z,1)) #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)) #define sfree(z) (mlog(__FILE__,__LINE__), safefree(z))
void mlog(char *, int); void mlog(char *, int);
#else #else
Expand Down

0 comments on commit 9af6afe

Please sign in to comment.