Module: wine Branch: master Commit: 21e9d51b366148d8bcc4e701dd1fa445315178da URL: https://source.winehq.org/git/wine.git/?a=commit;h=21e9d51b366148d8bcc4e701d...
Author: Francois Gouget fgouget@codeweavers.com Date: Mon Mar 15 19:28:40 2021 +0100
winetest: Simplify the 'dll is native' error message.
Signed-off-by: Francois Gouget fgouget@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
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 408e1b3c706..b0b6ceff88b 100644 --- a/programs/winetest/main.c +++ b/programs/winetest/main.c @@ -957,7 +957,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; }