From: Peter Johnson Date: Sun, 5 Aug 2007 16:44:07 +0000 (-0000) Subject: Fix #112: Use yasm__strcasecmp instead of strcasecmp. X-Git-Tag: v0.6.2~8^2~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=66bcd036586c17a93a617efecfb437176dcf4c3d;p=yasm Fix #112: Use yasm__strcasecmp instead of strcasecmp. svn path=/trunk/yasm/; revision=1907 --- 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;