diff options
author | amber <amber@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-29 19:18:18 +0000 |
---|---|---|
committer | amber <amber@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-29 19:18:18 +0000 |
commit | ab0a9edc2f5754c4f778c008caff1682d43d65eb (patch) | |
tree | 639e173ce8010bd59ddddb5460fdc56858a1ac1a /src/common/utils.h | |
parent | e5bce970b13d3485cfa823aa4810787c2006181a (diff) | |
download | hercules-ab0a9edc2f5754c4f778c008caff1682d43d65eb.tar.gz hercules-ab0a9edc2f5754c4f778c008caff1682d43d65eb.tar.bz2 hercules-ab0a9edc2f5754c4f778c008caff1682d43d65eb.tar.xz hercules-ab0a9edc2f5754c4f778c008caff1682d43d65eb.zip |
cxx updates
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@861 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/utils.h')
-rw-r--r-- | src/common/utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/utils.h b/src/common/utils.h index d234e9351..0ac880a50 100644 --- a/src/common/utils.h +++ b/src/common/utils.h @@ -27,11 +27,11 @@ #define CREATE(result, type, number) do {\ if ((number) * sizeof(type) <= 0) \ printf("SYSERR: Zero bytes or less requested at %s:%d.\n", __FILE__, __LINE__); \ - if (!((result) = (type *) calloc ((number), sizeof(type)))) \ + if (!((result) = (type *) aCalloc ((number), sizeof(type)))) \ { perror("SYSERR: malloc failure"); abort(); } } while(0) #define RECREATE(result,type,number) do {\ - if (!((result) = (type *) realloc ((result), sizeof(type) * (number))))\ + if (!((result) = (type *) aRealloc ((result), sizeof(type) * (number))))\ { printf("SYSERR: realloc failure"); abort(); } } while(0) struct StringBuf { |