diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-01-15 20:12:51 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-01-15 20:12:51 +0000 |
commit | 17aeb75dcd66b99d540b6fc37604a4c8037ffec5 (patch) | |
tree | 186c55e415a03d50674fa9b742bbd9778dd54f43 /src/common | |
parent | 7b5a33083c2b411e37f9412091937c18dbe92e29 (diff) | |
download | hercules-17aeb75dcd66b99d540b6fc37604a4c8037ffec5.tar.gz hercules-17aeb75dcd66b99d540b6fc37604a4c8037ffec5.tar.bz2 hercules-17aeb75dcd66b99d540b6fc37604a4c8037ffec5.tar.xz hercules-17aeb75dcd66b99d540b6fc37604a4c8037ffec5.zip |
* Various accumulated insignificant fixes to documentation, examples and comments.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14674 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/db.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/db.c b/src/common/db.c index 550bfd382..595ed241d 100644 --- a/src/common/db.c +++ b/src/common/db.c @@ -697,7 +697,7 @@ static void db_free_add(DBMap_impl* db, DBNode node, DBNode *root) db->alloc_file, db->alloc_line); exit(EXIT_FAILURE); } - if (!(db->options&DB_OPT_DUP_KEY)) { // Make shure we have a key until the node is freed + if (!(db->options&DB_OPT_DUP_KEY)) { // Make sure we have a key until the node is freed old_key = node->key; node->key = db_dup_key(db, node->key); db->release(old_key, node->data, DB_RELEASE_KEY); |