fusion: Remove unused to_multibyte.

Gerald Pfeifer <[email protected]> Sun, 5 Nov 2017 10:48:22 +0100 (CET)
Newsgroups gmane.comp.emulators.wine.patches
Message-ID <[email protected]>
The instance in asmenum.c is heavily used, this one not at all.

Gerald


Signed-off-by: Gerald Pfeifer <[email protected]>
---
 dlls/fusion/tests/asmname.c | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/dlls/fusion/tests/asmname.c b/dlls/fusion/tests/asmname.c
index 01ebd0a30b..b93f289f4c 100644
--- a/dlls/fusion/tests/asmname.c
+++ b/dlls/fusion/tests/asmname.c
@@ -339,11 +339,6 @@ static inline void to_widechar(LPWSTR dest, LPCSTR src)
     MultiByteToWideChar(CP_ACP, 0, src, -1, dest, MAX_PATH);
 }
 
-static inline void to_multibyte(LPSTR dest, LPWSTR src)
-{
-    WideCharToMultiByte(CP_ACP, 0, src, -1, dest, MAX_PATH, NULL, NULL);
-}
-
 static void test_assembly_name_props_line(IAssemblyName *name,
                                           const ASMPROP_RES *vals, int line)
 {
-- 
2.14.1