From d442f5fffaf3c3b77514b378eadcafbbc41a1a82 Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Thu, 27 Sep 2012 22:34:21 +0400 Subject: [PATCH] mlang: Use proper interface call instead of implementation function. --- dlls/mlang/mlang.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mlang/mlang.c b/dlls/mlang/mlang.c index ba1feba22c..a361bc9579 100644 --- a/dlls/mlang/mlang.c +++ b/dlls/mlang/mlang.c @@ -1878,7 +1878,7 @@ static HRESULT WINAPI fnIMLangFontLink_GetStrCodePages( DWORD cp; HRESULT ret; - ret = fnIMLangFontLink_GetCharCodePages(iface, pszSrc[i], &cp); + ret = IMLangFontLink_GetCharCodePages(iface, pszSrc[i], &cp); if (ret != S_OK) return E_FAIL; if (!cps) cps = cp; -- 2.32.0.93.g670b81a890