diff options
author | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-04-15 12:53:46 +0000 |
---|---|---|
committer | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-04-15 12:53:46 +0000 |
commit | 63d8f98b499cc69df9faf3ae8cee6978ad79d706 (patch) | |
tree | de259308834c5411c3a6d76db293c2645c6e9568 /src/map/config | |
parent | 3d3bd79ab6e957db21521d551037439f7c1a512a (diff) | |
download | hercules-63d8f98b499cc69df9faf3ae8cee6978ad79d706.tar.gz hercules-63d8f98b499cc69df9faf3ae8cee6978ad79d706.tar.bz2 hercules-63d8f98b499cc69df9faf3ae8cee6978ad79d706.tar.xz hercules-63d8f98b499cc69df9faf3ae8cee6978ad79d706.zip |
Follow up r15863. As suggested by xazax I've replaced long with inptr since it seems to fit the purpose better.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15865 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/config')
-rw-r--r-- | src/map/config/const.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/config/const.h b/src/map/config/const.h index 4e5a6fc5f..ae7ecd102 100644 --- a/src/map/config/const.h +++ b/src/map/config/const.h @@ -68,7 +68,7 @@ #ifdef __64BIT__
- #define __64BPRTSIZE(y) (long)y
+ #define __64BPRTSIZE(y) (intptr)y
#else
#define __64BPRTSIZE(y) y
#endif
|