Call try_flags() even when there are no flags to try

Avoids:

fellow_io_uring.c:234:1: error: ‘try_flag’ defined but not used [-Werror=unused-function]
  234 | try_flag(unsigned flag)
      | ^~~~~~~~
parent cb92c844
......@@ -256,6 +256,7 @@ try_flags(void)
if (flags_checked != 0)
return;
AZ(try_flag(0));
#ifdef IORING_SETUP_COOP_TASKRUN
flags_supported |= try_flag(IORING_SETUP_COOP_TASKRUN);
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment