From 66bcd036586c17a93a617efecfb437176dcf4c3d Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Sun, 5 Aug 2007 16:44:07 +0000 Subject: [PATCH] Fix #112: Use yasm__strcasecmp instead of strcasecmp. svn path=/trunk/yasm/; revision=1907 --- libyasm/hamt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libyasm/hamt.c b/libyasm/hamt.c index ceee28f7..33ab83bb 100644 --- a/libyasm/hamt.c +++ b/libyasm/hamt.c @@ -133,7 +133,7 @@ HAMT_create(int nocase, /*@exits@*/ void (*error_func) if (nocase) { hamt->HashKey = HashKey_nocase; hamt->ReHashKey = ReHashKey_nocase; - hamt->CmpKey = strcasecmp; + hamt->CmpKey = yasm__strcasecmp; } else { hamt->HashKey = HashKey; hamt->ReHashKey = ReHashKey; -- 2.40.0