summaryrefslogtreecommitdiff
path: root/src/map/script.c
diff options
context:
space:
mode:
authormarkzd <markzd@54d463be-8e91-2dee-dedb-b68131a5f0ec>2013-01-03 09:12:36 +0000
committermarkzd <markzd@54d463be-8e91-2dee-dedb-b68131a5f0ec>2013-01-03 09:12:36 +0000
commit6bce3af9caeb640d8097602e7cfd743792a8b035 (patch)
treeff83c264b34b5ec855baf5d8872ea89b425138f2 /src/map/script.c
parenta1238e85340c38861365f9c2e4a42a6f59d560c0 (diff)
downloadhercules-6bce3af9caeb640d8097602e7cfd743792a8b035.tar.gz
hercules-6bce3af9caeb640d8097602e7cfd743792a8b035.tar.bz2
hercules-6bce3af9caeb640d8097602e7cfd743792a8b035.tar.xz
hercules-6bce3af9caeb640d8097602e7cfd743792a8b035.zip
- Fixed an warning of type casting. (bugreport:7081)
- Removed an unecessary type cast before atoi. - Fixed Ray of Genesis Attack Formula. (bugreport:7053) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@17074 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/script.c')
-rw-r--r--src/map/script.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/script.c b/src/map/script.c
index 143be2f03..3409d44db 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -15026,7 +15026,7 @@ BUILDIN_FUNC(searchitem)
for( i = 0; i < count; ++start, ++i )
{// Set array
- void* v = (void*)__64BPRTSIZE(items[i]->nameid);
+ void* v = (void*)__64BPRTSIZE((int)items[i]->nameid);
set_reg(st, sd, reference_uid(id, start), name, v, reference_getref(data));
}