From 1cccd3c7cc1a5a973e03f9dd8dc457bce554d7a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20M=C3=A4kel=C3=A4?= Date: Mon, 4 May 2020 22:01:26 +0300 Subject: [PATCH] MDEV-7962: Fix cmake WITH_WSREP=OFF commit d467bb7e5e7902cf763c86cae71fde4f08e2ae3e accidentally broke the build without WSREP, by misplacing an #endif. --- storage/innobase/handler/ha_innodb.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/innobase/handler/ha_innodb.cc b/storage/innobase/handler/ha_innodb.cc index 98ce0d59923..25304b82d64 100644 --- a/storage/innobase/handler/ha_innodb.cc +++ b/storage/innobase/handler/ha_innodb.cc @@ -4494,8 +4494,8 @@ innobase_commit_low( #ifdef WITH_WSREP if (is_wsrep) { thd_proc_info(thd, tmp); -#endif /* WITH_WSREP */ } +#endif /* WITH_WSREP */ } /*****************************************************************//**