diff options
author | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-12-06 15:37:14 +0000 |
---|---|---|
committer | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-12-06 15:37:14 +0000 |
commit | 8dc3ebbb25683eab9349c26362ad42dbcfc94a04 (patch) | |
tree | d1598f30cdd39a5ece81977933c58d5c0d070f4b /src/map | |
parent | 13c58cce0a44f607c96771d7014791eba1a57429 (diff) | |
download | hercules-8dc3ebbb25683eab9349c26362ad42dbcfc94a04.tar.gz hercules-8dc3ebbb25683eab9349c26362ad42dbcfc94a04.tar.bz2 hercules-8dc3ebbb25683eab9349c26362ad42dbcfc94a04.tar.xz hercules-8dc3ebbb25683eab9349c26362ad42dbcfc94a04.zip |
ooops, two errors escaped... >.<
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11861 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/script.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/script.c b/src/map/script.c index ec0c3494c..63d3f1a16 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -7152,7 +7152,7 @@ BUILDIN_FUNC(gettimestr) *------------------------------------------*/ BUILDIN_FUNC(openstorage) { - TB_PC* sd; + TBL_PC* sd; sd = script_rid2sd(st); if( sd == NULL ) @@ -7244,7 +7244,7 @@ BUILDIN_FUNC(makepet) *------------------------------------------*/ BUILDIN_FUNC(getexp) { - TBL_PC* sd;; + TBL_PC* sd; int base=0,job=0; double bonus; |