Alexandre Julliard : winecrt0: Use the correct integral type.
Module: wine Branch: master Commit: 0cdf9359e0b02e38b999113c5f86f048fda09f1c URL: https://source.winehq.org/git/wine.git/?a=commit;h=0cdf9359e0b02e38b999113c5... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Thu Jan 27 17:54:12 2022 +0100 winecrt0: Use the correct integral type. Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/winecrt0/debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winecrt0/debug.c b/dlls/winecrt0/debug.c index 14f3d2d3773..6e1866c7568 100644 --- a/dlls/winecrt0/debug.c +++ b/dlls/winecrt0/debug.c @@ -160,7 +160,7 @@ static void init_options(void) static const char * __cdecl fallback__wine_dbg_strdup( const char *str ) { static char *list[32]; - static int pos; + static LONG pos; char *ret = strdup( str ); int idx;
participants (1)
-
Alexandre Julliard