diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-12-04 19:11:53 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-12-04 19:11:53 +0000 |
commit | a48d096890242cdde3c9e0f682ddb33c4405163a (patch) | |
tree | 7de322a079b41852bb7d16bcc68cda6ac4f86e14 | |
parent | 606fb6292db080bcbd84958c6e54df8eba190999 (diff) | |
download | hercules-a48d096890242cdde3c9e0f682ddb33c4405163a.tar.gz hercules-a48d096890242cdde3c9e0f682ddb33c4405163a.tar.bz2 hercules-a48d096890242cdde3c9e0f682ddb33c4405163a.tar.xz hercules-a48d096890242cdde3c9e0f682ddb33c4405163a.zip |
- Oops, fixed sql compile error.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9407 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | src/map/mob.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index 0c21335b8..5f22c8212 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -3933,7 +3933,7 @@ static int mob_read_sqldb(void) continue; } if (mob_db_data[class_] == NULL) - db_data[class_] = aCalloc(1, sizeof (struct mob_data)); + mob_db_data[class_] = aCalloc(1, sizeof (struct mob_data)); db = mob_db_data[class_]; ln++; |