compile fix for debug

This commit is contained in:
van Hauser 2017-07-06 23:09:44 +02:00
commit 185021d474

View file

@ -493,7 +493,7 @@ static const struct {
} while(0) } 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; return (value & flag) == flag;
} }