Changeset 260500 in webkit


Ignore:
Timestamp:
Apr 21, 2020 9:12:03 PM (4 years ago)
Author:
ysuzuki@apple.com
Message:

Unreviewd, speculative Windows build fix part 2
https://bugs.webkit.org/show_bug.cgi?id=210834

  • runtime/Options.cpp:

(JSC::strncasecmp):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r260499 r260500  
     12020-04-21  Yusuke Suzuki  <ysuzuki@apple.com>
     2
     3        Unreviewd, speculative Windows build fix part 2
     4        https://bugs.webkit.org/show_bug.cgi?id=210834
     5
     6        * runtime/Options.cpp:
     7        (JSC::strncasecmp):
     8
    192020-04-21  Yusuke Suzuki  <ysuzuki@apple.com>
    210
  • trunk/Source/JavaScriptCore/runtime/Options.cpp

    r260499 r260500  
    540540inline bool strncasecmp(const char* str1, const char* str2, size_t n)
    541541{
    542     return _strnimp(str1, str2, n);
     542    return _strnicmp(str1, str2, n);
    543543}
    544544#endif
Note: See TracChangeset for help on using the changeset viewer.