From 7d352b12ce77d8c0f6401a007761ac50b09ca61f Mon Sep 17 00:00:00 2001 From: Vincent Fu Date: Tue, 28 Feb 2023 13:01:32 -0500 Subject: [PATCH] fdp: change the order of includes to fix Windows build error On Windows fio.h includes some definitions needed by file.h. fio.h actually includes file.h already but we can retain the file.h include in fdp.c since it refers to some declarations that were added there. Signed-off-by: Vincent Fu --- fdp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdp.c b/fdp.c index c50af1e2..84e04fce 100644 --- a/fdp.c +++ b/fdp.c @@ -9,8 +9,8 @@ #include #include #include -#include "file.h" #include "fio.h" +#include "file.h" #include "pshared.h" #include "fdp.h" -- 2.25.1