summaryrefslogtreecommitdiff
path: root/src/map/script.c
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-06-08 17:31:28 -0300
committerEuphy <euphy@rathena.org>2013-06-15 15:43:22 -0400
commit6f77eb8e69c475ac35f9ca4264eb417da6b60e55 (patch)
tree2f2f1a8a31142a23d3b877d10a583965bec37614 /src/map/script.c
parent130ec104a8e8742df4d7ead13c42ee803c55f52b (diff)
downloadhercules-6f77eb8e69c475ac35f9ca4264eb417da6b60e55.tar.gz
hercules-6f77eb8e69c475ac35f9ca4264eb417da6b60e55.tar.bz2
hercules-6f77eb8e69c475ac35f9ca4264eb417da6b60e55.tar.xz
hercules-6f77eb8e69c475ac35f9ca4264eb417da6b60e55.zip
Follow up d73783f22b2bb881aab74524d153d89a5932a199
Adjusting db.c interface name to adhere with the rest (pretty much we try to make it as short as we can, and being there were no conflicts we saw no reason to maintain the 'i') Signed-off-by: shennetsind <ind@henn.et>
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 752f4445d..612bf52f5 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -3659,7 +3659,7 @@ int script_config_read(char *cfgName)
*/
static int db_script_free_code_sub(DBKey key, DBData *data, va_list ap)
{
- struct script_code *code = iDB->data2ptr(data);
+ struct script_code *code = DB->data2ptr(data);
if (code)
script_free_code(code);
return 0;