From c220ad0b5e1250d616e80b7f79778f7a75f77ff9 Mon Sep 17 00:00:00 2001 From: Willian Date: Fri, 2 Sep 2022 00:43:16 +0000 Subject: [PATCH] remove unused Windows HANDLE (#142) --- src/harness/os/windows.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/harness/os/windows.c b/src/harness/os/windows.c index 148358df..64c60e7b 100644 --- a/src/harness/os/windows.c +++ b/src/harness/os/windows.c @@ -49,7 +49,6 @@ void OS_Sleep(int delay_ms) { char* OS_GetFirstFileInDirectory(char* path) { char with_extension[256]; WIN32_FIND_DATA find_data; - HANDLE hFind = NULL; strcpy(with_extension, path); strcat(with_extension, "\\*.???");