Author: dchapyshev
Date: Mon Aug 22 13:18:26 2016
New Revision: 72427
URL:
http://svn.reactos.org/svn/reactos?rev=72427&view=rev
Log:
[UTF16LE]
Try to fix build
Modified:
trunk/reactos/sdk/tools/utf16le/utf16le.cpp
Modified: trunk/reactos/sdk/tools/utf16le/utf16le.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/sdk/tools/utf16le/utf16le.…
==============================================================================
--- trunk/reactos/sdk/tools/utf16le/utf16le.cpp [iso-8859-1] (original)
+++ trunk/reactos/sdk/tools/utf16le/utf16le.cpp [iso-8859-1] Mon Aug 22 13:18:26 2016
@@ -279,12 +279,12 @@
utf_converter::bom_types bom_type = utf_converter::bom;
- if (argc == 4 && _stricmp(argv[3], "nobom") == 0)
+ if (argc == 4 && stricmp(argv[3], "nobom") == 0)
{
bom_type = utf_converter::nobom;
}
- utf_converter conv(argv[1],argv[2], bom_type);
+ utf_converter conv(argv[1], argv[2], bom_type);
if ((err = conv.getError())!=utf_converter::none)
{