From 836c87fb1e7b86622e77f1efa2f8f9ac2755c96c Mon Sep 17 00:00:00 2001 From: Christian Brauner Date: Thu, 12 May 2022 18:52:42 +0200 Subject: [PATCH] utils: add missing global.h include Make sure that utils.{c,h} have access to the necessary defines created during the configure stage when building xfstests. Acked-by: Christoph Hellwig Signed-off-by: Christian Brauner (Microsoft) Signed-off-by: Zorro Lang --- src/vfs/utils.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/vfs/utils.h b/src/vfs/utils.h index c10246467..e32865a62 100644 --- a/src/vfs/utils.h +++ b/src/vfs/utils.h @@ -3,6 +3,8 @@ #ifndef __IDMAP_UTILS_H #define __IDMAP_UTILS_H +#include "../global.h" + #ifndef _GNU_SOURCE #define _GNU_SOURCE #endif -- 2.49.0