diff options
author | Sergei Golubchik <serg@mariadb.org> | 2015-05-04 22:13:46 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2015-05-04 22:13:46 +0200 |
commit | 085297a1214814cd7eacbab2afb24c7a08bfc40e (patch) | |
tree | 37258971c18a8a50cded86bf84546b67f67fbaec /storage/innobase/sync | |
parent | 6d06fbbd1dc25b3c12568f9038060dfdb69f9683 (diff) | |
download | mariadb-git-085297a1214814cd7eacbab2afb24c7a08bfc40e.tar.gz |
5.6.24
Diffstat (limited to 'storage/innobase/sync')
-rw-r--r-- | storage/innobase/sync/sync0sync.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/innobase/sync/sync0sync.cc b/storage/innobase/sync/sync0sync.cc index 60b1798fb0d..3ca495aaa8c 100644 --- a/storage/innobase/sync/sync0sync.cc +++ b/storage/innobase/sync/sync0sync.cc @@ -1,6 +1,6 @@ /***************************************************************************** -Copyright (c) 1995, 2013, Oracle and/or its affiliates. All Rights Reserved. +Copyright (c) 1995, 2015, Oracle and/or its affiliates. All Rights Reserved. Copyright (c) 2008, Google Inc. Portions of this file contain modifications contributed and copyrighted by @@ -298,9 +298,9 @@ mutex_create_func( /* NOTE! The very first mutexes are not put to the mutex list */ - if ((mutex == &mutex_list_mutex) + if (mutex == &mutex_list_mutex #ifdef UNIV_SYNC_DEBUG - || (mutex == &sync_thread_mutex) + || mutex == &sync_thread_mutex #endif /* UNIV_SYNC_DEBUG */ ) { |