summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools
diff options
context:
space:
mode:
author Wilbert Pol <wilbert@jdg.info>2012-09-06 18:56:51 +0000
committer Wilbert Pol <wilbert@jdg.info>2012-09-06 18:56:51 +0000
commit5dabd67b341d3d6a5a21f2ec9199d43d239dedd4 (patch)
tree458a204aaefaa71f63022877ac026a4b1734e221 /src/tools
parentce28009ad66b167c5b14861cacc6092baf9091f4 (diff)
Fix compile error (nw)
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/jedutil.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/jedutil.c b/src/tools/jedutil.c
index 628ac52f269..bcf9c2449b2 100644
--- a/src/tools/jedutil.c
+++ b/src/tools/jedutil.c
@@ -100,6 +100,7 @@
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
+#include "corestr.h"
#include "jedparse.h"
@@ -876,7 +877,7 @@ static pal_data* find_pal_data(const char *name)
for (index = 0; index < sizeof(paldata) / sizeof(paldata[0]);
++index)
{
- if (!strcmpi(name, paldata[index].name))
+ if (!core_stricmp(name, paldata[index].name))
{
return &paldata[index];
}