diff options
Diffstat (limited to 'mysys/thr_mutex.c')
-rw-r--r-- | mysys/thr_mutex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/thr_mutex.c b/mysys/thr_mutex.c index 86a7ce9684b..83395adaf61 100644 --- a/mysys/thr_mutex.c +++ b/mysys/thr_mutex.c @@ -201,7 +201,7 @@ int safe_mutex_init(safe_mutex_t *mp, /* Deadlock detection is initialised only lazily, on first use. */ - mp->create_flags= safe_mutex_deadlock_detector ? MYF_NO_DEADLOCK_DETECTION : 0; + mp->create_flags= safe_mutex_deadlock_detector ? 0 : MYF_NO_DEADLOCK_DETECTION; #ifdef SAFE_MUTEX_DETECT_DESTROY /* |