Ignore:
Timestamp:
Oct 19, 2011, 11:00:18 PM (14 years ago)
Author:
dmik
Message:

strcmpi -> stricmp.

The former is deprecated since long and missing in GCC.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gcc-kmk/src/kernel32/windllbase.cpp

    r21716 r21726  
    791791    dll = head;
    792792    while(dll) {
    793         if(strcmpi(szDllName, dll->szModule) == 0) {
     793        if(stricmp(szDllName, dll->szModule) == 0) {
    794794            dlllistmutex.leave();
    795795            return(dll);
Note: See TracChangeset for help on using the changeset viewer.