From bbe68b6347fb200bc22ff9519b8ac71945a80606 Mon Sep 17 00:00:00 2001 From: Dmitry Chapyshev Date: Mon, 22 Aug 2016 13:18:26 +0000 Subject: [PATCH] [UTF16LE] Try to fix build svn path=/trunk/; revision=72427 --- reactos/sdk/tools/utf16le/utf16le.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/sdk/tools/utf16le/utf16le.cpp b/reactos/sdk/tools/utf16le/utf16le.cpp index 2b223687fb4..9b736178050 100644 --- a/reactos/sdk/tools/utf16le/utf16le.cpp +++ b/reactos/sdk/tools/utf16le/utf16le.cpp @@ -279,12 +279,12 @@ int main(int argc, char* argv[]) 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) {