From 7d28e46a6cb660c8ed79a8e1845dcfa5ec3cc8cb Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sun, 11 Jan 2015 00:49:16 +0200 Subject: [PATCH] Fix os_win32 build Addition of os_memcmp_const() in commit afc3c8b07ffcdccc9349c83dfd3cc904ad9fbfb1 had forgotten to include common.h into os_win32.c to get u8 defined. Signed-off-by: Jouni Malinen --- src/utils/os_win32.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/os_win32.c b/src/utils/os_win32.c index 57ee13260..296ea13f1 100644 --- a/src/utils/os_win32.c +++ b/src/utils/os_win32.c @@ -12,6 +12,7 @@ #include #include "os.h" +#include "common.h" void os_sleep(os_time_t sec, os_time_t usec) {