[PATCH] winetest: Simplify the 'dll is native' error message.

Francois Gouget fgouget at codeweavers.com
Mon Mar 15 13:28:40 CDT 2021


Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
---
This form is easier on the eyes. Dissect and LogUtils can just get one
more rule to highlight these like they already do for the 'dll is a
stub' and 'dll is missing' lines.
---
 programs/winetest/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/programs/winetest/main.c b/programs/winetest/main.c
index 9ad3baa8981..6056dee2a75 100644
--- a/programs/winetest/main.c
+++ b/programs/winetest/main.c
@@ -974,7 +974,7 @@ extract_test_proc (HMODULE hModule, LPCSTR lpszType, LPSTR lpszName, LONG_PTR lP
         }
         else if (is_native_dll(dll))
         {
-            xprintf ("    %s=load error Configured as native\n", dllname);
+            xprintf ("    %s=dll is native\n", dllname);
             nr_native_dlls++;
             run = FALSE;
         }
-- 
2.20.1



More information about the wine-devel mailing list