From 5a714bd99e57eec23d18848fdc216b526a1eb40a Mon Sep 17 00:00:00 2001 From: Eric Pouech Date: Wed, 26 Jan 2022 08:43:52 +0100 Subject: [PATCH] find: Use correct integral type. Signed-off-by: Eric Pouech Signed-off-by: Alexandre Julliard --- programs/find/find.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programs/find/find.c b/programs/find/find.c index 7d178874b4d..5b86325d1c2 100644 --- a/programs/find/find.c +++ b/programs/find/find.c @@ -29,8 +29,8 @@ WINE_DEFAULT_DEBUG_CHANNEL(find); static BOOL read_char_from_handle(HANDLE handle, char *char_out) { static char buffer[4096]; - static UINT buffer_max = 0; - static UINT buffer_pos = 0; + static DWORD buffer_max = 0; + static DWORD buffer_pos = 0; /* Read next content into buffer */ if (buffer_pos >= buffer_max)