Skip to content

Commit 2c226e0

Browse files
committed
MDEV-24313 fixup: GCC -Wparentheses
1 parent f24b738 commit 2c226e0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

storage/innobase/os/os0file.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4029,7 +4029,8 @@ int os_aio_init()
40294029
ut_ad(srv_use_native_aio);
40304030
disable:
40314031
ib::warn() << "Linux Native AIO disabled.";
4032-
ret= srv_thread_pool->configure_aio(srv_use_native_aio= false, max_events);
4032+
srv_use_native_aio= false;
4033+
ret= srv_thread_pool->configure_aio(false, max_events);
40334034
}
40344035
#endif
40354036

0 commit comments

Comments
 (0)