remove some warnings Modified: trunk/reactos/apps/utils/rosperf/rosperf.c _____
Modified: trunk/reactos/apps/utils/rosperf/rosperf.c --- trunk/reactos/apps/utils/rosperf/rosperf.c 2005-11-22 07:18:44 UTC (rev 19454) +++ trunk/reactos/apps/utils/rosperf/rosperf.c 2005-11-22 08:12:42 UTC (rev 19455) @@ -319,7 +319,7 @@
RosVersion = VersionInfo.szCSDVersion + wcslen(VersionInfo.szCSDVersion) + 1; RosVersionLen = sizeof(VersionInfo.szCSDVersion) / sizeof(VersionInfo.szCSDVersion[0]) - (RosVersion - VersionInfo.szCSDVersion); - if (7 <= RosVersionLen && 0 == wcsnicmp(RosVersion, L"ReactOS", 7)) + if (7 <= RosVersionLen && 0 == _wcsnicmp(RosVersion, L"ReactOS", 7)) { wprintf(L"Running on %s\n", RosVersion); return; @@ -744,7 +744,7 @@ { if (L'/' == ArgV[Arg][0] || L'-' == ArgV[Arg][0]) { - if (0 == wcsicmp(ArgV[Arg] + 1, L"repeat")) + if (0 == _wcsicmp(ArgV[Arg] + 1, L"repeat")) { if (ArgC <= Arg + 1) { @@ -763,7 +763,7 @@ return FALSE; } } - else if (0 == wcsicmp(ArgV[Arg] + 1, L"seconds")) + else if (0 == _wcsicmp(ArgV[Arg] + 1, L"seconds")) { if (ArgC <= Arg + 1) { @@ -802,7 +802,7 @@ } for (i = 0; i < AllTestCount; i++) { - if (0 == wcsicmp(ArgV[Arg], AllTests[i].Option)) + if (0 == _wcsicmp(ArgV[Arg], AllTests[i].Option)) { DoTest[i] = TRUE; break;