]> granicus.if.org Git - yasm/commitdiff
Fix #112: Use yasm__strcasecmp instead of strcasecmp.
authorPeter Johnson <peter@tortall.net>
Sun, 5 Aug 2007 16:44:07 +0000 (16:44 -0000)
committerPeter Johnson <peter@tortall.net>
Sun, 5 Aug 2007 16:44:07 +0000 (16:44 -0000)
svn path=/trunk/yasm/; revision=1907

libyasm/hamt.c

index ceee28f75a1b3e38a133e0adac74f0b587ecbffa..33ab83bb7b4ada942578560cf7bb2730e7c4c1cf 100644 (file)
@@ -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;