From 32169fb39d3e09118b17965c4ea92fc4370a4a66 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Sun, 26 Jan 2020 10:56:22 +0100 Subject: [PATCH] mscoree/tests: Get rid of strrchrW(). Signed-off-by: Alexandre Julliard --- dlls/mscoree/tests/metahost.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/dlls/mscoree/tests/metahost.c b/dlls/mscoree/tests/metahost.c index d3dce9e7c1a..b6b0608e9d4 100644 --- a/dlls/mscoree/tests/metahost.c +++ b/dlls/mscoree/tests/metahost.c @@ -74,13 +74,6 @@ static void cleanup(void) FreeLibrary(hmscoree); } -static WCHAR *strrchrW( WCHAR *str, WCHAR ch ) -{ - WCHAR *ret = NULL; - do { if (*str == ch) ret = str; } while (*str++); - return ret; -} - static void test_getruntime(WCHAR *version) { static const WCHAR dotzero[] = {'.','0',0}; @@ -106,7 +99,7 @@ static void test_getruntime(WCHAR *version) ICLRRuntimeInfo_Release(info); /* Versions must match exactly. */ - dot = strrchrW(version, '.'); + dot = wcsrchr(version, '.'); lstrcpyW(dot, dotzero); hr = ICLRMetaHost_GetRuntime(metahost, version, &IID_ICLRRuntimeInfo, (void**)&info); ok(hr == CLR_E_SHIM_RUNTIME, "GetVersion failed, hr=%x\n", hr);