diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-07-04 18:22:24 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-07-04 18:22:24 +0000 |
commit | b813d39a6d8a0a73558ee1749d34f53681cd83f3 (patch) | |
tree | a6adf02ac197d1c03f440866ad1f3e974931ef94 | |
parent | a19256ad9e618ba780b6906e11afd143939d9a74 (diff) | |
download | hercules-b813d39a6d8a0a73558ee1749d34f53681cd83f3.tar.gz hercules-b813d39a6d8a0a73558ee1749d34f53681cd83f3.tar.bz2 hercules-b813d39a6d8a0a73558ee1749d34f53681cd83f3.tar.xz hercules-b813d39a6d8a0a73558ee1749d34f53681cd83f3.zip |
* Fixed 'strnlen' still causing warnings in db.c on Debian (follow up to r14855).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14885 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/common/db.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 4fc5fb6b5..9cdf1dcc0 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -1,5 +1,7 @@ Date Added +2011/07/04 + * Fixed 'strnlen' still causing warnings in db.c on Debian (follow up to r14855). [Ai4rei] 2011/07/03 * Corrected npcdb_checkid to exclude border constants 400 (JT_NEW_NPC_START) and 1000 (JT_MON_BEGIN) (since r4425 and r12025, related r4537). [Ai4rei] 2011/07/02 diff --git a/src/common/db.c b/src/common/db.c index e3b0a37a6..c9b124455 100644 --- a/src/common/db.c +++ b/src/common/db.c @@ -67,7 +67,6 @@ \*****************************************************************************/ #include <stdio.h> #include <stdlib.h> -#include <string.h> #include "db.h" #include "../common/mmo.h" |