From e96872f4c03325dacf6eaaa0da2bdf8574f3e6fa Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Fri, 28 Nov 2014 23:06:20 +0100 Subject: [PATCH] Check for FindNextFile when defining it rather than FindFirstFile Reviewed-by: Matt Caswell --- crypto/LPdir_win.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/LPdir_win.c b/crypto/LPdir_win.c index d5b5e2c900..7eea373cde 100644 --- a/crypto/LPdir_win.c +++ b/crypto/LPdir_win.c @@ -36,7 +36,7 @@ #if defined(LP_SYS_WINCE) && !defined(FindFirstFile) # define FindFirstFile FindFirstFileW #endif -#if defined(LP_SYS_WINCE) && !defined(FindFirstFile) +#if defined(LP_SYS_WINCE) && !defined(FindNextFile) # define FindNextFile FindNextFileW #endif -- 2.34.1