From 185021d47471dfafee31ac145abd830743e0f7bc Mon Sep 17 00:00:00 2001 From: van Hauser Date: Thu, 6 Jul 2017 23:09:44 +0200 Subject: [PATCH] compile fix for debug --- hydra.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hydra.c b/hydra.c index 0520e28..edd71de 100644 --- a/hydra.c +++ b/hydra.c @@ -493,7 +493,7 @@ static const struct { } while(0) -int32_t inline check_flag(int32_t value, int32_t flag) { +int32_t /*inline*/ check_flag(int32_t value, int32_t flag) { // inline does not compile with debug return (value & flag) == flag; }