diff options
author | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-01-12 20:28:11 +0000 |
---|---|---|
committer | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-01-12 20:28:11 +0000 |
commit | 4a1c96c506d236fd8f28e9c138dd9ee8547dca1c (patch) | |
tree | c7b772714a4370d3b6ade2eb7e121cfaa96289f1 /src/common/malloc.h | |
parent | 3781f8c6fc018714c3a4fcac12b2cf7a3e6cf686 (diff) | |
download | hercules-4a1c96c506d236fd8f28e9c138dd9ee8547dca1c.tar.gz hercules-4a1c96c506d236fd8f28e9c138dd9ee8547dca1c.tar.bz2 hercules-4a1c96c506d236fd8f28e9c138dd9ee8547dca1c.tar.xz hercules-4a1c96c506d236fd8f28e9c138dd9ee8547dca1c.zip |
yup, i need to rest... (also, copy-paste is eeeevil)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9649 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/malloc.h')
-rw-r--r-- | src/common/malloc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/malloc.h b/src/common/malloc.h index d6f6adb3c..2cef33982 100644 --- a/src/common/malloc.h +++ b/src/common/malloc.h @@ -145,11 +145,11 @@ ////////////// Others ////////////////////////// // should be merged with any of above later -#define CREATE(result, type, number) (result) = (type *) aCalloc ((number), sizeof(type)); +#define CREATE(result, type, number) (result) = (type *) aCalloc ((number), sizeof(type)) -#define CREATE_A(result, type, number) (result) = (type *) aCallocA ((number), sizeof(type)); +#define CREATE_A(result, type, number) (result) = (type *) aCallocA ((number), sizeof(type)) -#define RECREATE(result, type, number) (result) = (type *) aRealloc ((result), sizeof(type) * (number)); +#define RECREATE(result, type, number) (result) = (type *) aRealloc ((result), sizeof(type) * (number)) //////////////////////////////////////////////// |