The following changes since commit e3de2e7fe2889942d46699e72ac06b96eab09e27: Merge branch 'github-1372' of https://github.com/vincentkfu/fio (2022-03-24 10:11:34 -0600) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to a57d3fdce796f1bb516c74db95d016bb6db170c1: Merge branch 'master' of https://github.com/cccheng/fio (2022-03-28 06:43:56 -0600) ---------------------------------------------------------------- Chung-Chiang Cheng (1): Fix compile error of GCC 4 Jens Axboe (1): Merge branch 'master' of https://github.com/cccheng/fio compiler/compiler.h | 1 + 1 file changed, 1 insertion(+) --- Diff of recent changes: diff --git a/compiler/compiler.h b/compiler/compiler.h index 44fa87b9..3fd0822f 100644 --- a/compiler/compiler.h +++ b/compiler/compiler.h @@ -67,6 +67,7 @@ #endif #ifndef __has_attribute +#define __has_attribute(x) __GCC4_has_attribute_##x #define __GCC4_has_attribute___fallthrough__ 0 #endif