MDEV-7962: Fix cmake WITH_WSREP=OFF

commit d467bb7e5e7902cf763c86cae71fde4f08e2ae3e accidentally
broke the build without WSREP, by misplacing an #endif.
This commit is contained in:
Marko Mäkelä 2020-05-04 22:01:26 +03:00
parent 3f65ce5781
commit 1cccd3c7cc

View File

@ -4494,8 +4494,8 @@ innobase_commit_low(
#ifdef WITH_WSREP
if (is_wsrep) {
thd_proc_info(thd, tmp);
#endif /* WITH_WSREP */
}
#endif /* WITH_WSREP */
}
/*****************************************************************//**