From: Vincent Fu Date: Tue, 28 Feb 2023 18:01:32 +0000 (-0500) Subject: fdp: change the order of includes to fix Windows build error X-Git-Tag: fio-3.34~7 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=7d352b12ce77d8c0f6401a007761ac50b09ca61f;p=fio.git 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 --- 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"