summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2020-05-04 22:01:26 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2020-05-04 22:01:26 +0300
commit1cccd3c7cc1a5a973e03f9dd8dc457bce554d7a9 (patch)
treed905e22c4bd04689d1d0973910bf110999f577e9
parent3f65ce5781e7eb047be1471bebddeaa002b4b0cd (diff)
downloadmariadb-git-1cccd3c7cc1a5a973e03f9dd8dc457bce554d7a9.tar.gz
MDEV-7962: Fix cmake WITH_WSREP=OFF
commit d467bb7e5e7902cf763c86cae71fde4f08e2ae3e accidentally broke the build without WSREP, by misplacing an #endif.
-rw-r--r--storage/innobase/handler/ha_innodb.cc2
1 files changed, 1 insertions, 1 deletions
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 */
}
/*****************************************************************//**