diff options
-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" |