Huw Davies : winebrowser: Fix calling convention for wine_get_unix_file_name().
Module: wine Branch: stable Commit: 9ea6cce0a0a32157c482c507a9a731861b760a41 URL: https://source.winehq.org/git/wine.git/?a=commit;h=9ea6cce0a0a32157c482c507a... Author: Huw Davies <huw(a)codeweavers.com> Date: Thu Jan 18 09:44:41 2018 +0000 winebrowser: Fix calling convention for wine_get_unix_file_name(). Signed-off-by: Huw Davies <huw(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> (cherry picked from commit f4e75d780b9b662d6b0b7a845c3a1f1b8ae5dacf) Signed-off-by: Michael Stefaniuc <mstefani(a)winehq.org> --- programs/winebrowser/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/winebrowser/main.c b/programs/winebrowser/main.c index 304ac14..b1c49e7 100644 --- a/programs/winebrowser/main.c +++ b/programs/winebrowser/main.c @@ -54,7 +54,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(winebrowser); -typedef LPSTR (*wine_get_unix_file_name_t)(LPCWSTR unixname); +typedef LPSTR (*CDECL wine_get_unix_file_name_t)(LPCWSTR unixname); static const WCHAR browser_key[] = {'S','o','f','t','w','a','r','e','\\','W','i','n','e','\\',
participants (1)
-
Alexandre Julliard