Commit b57e20d9 authored by Sunny Bains's avatar Sunny Bains

Add missing ';'.

parent d8226b53
...@@ -2325,10 +2325,10 @@ srv_lock_check_wait( ...@@ -2325,10 +2325,10 @@ srv_lock_check_wait(
/* If the slot has been freed and is not being reused /* If the slot has been freed and is not being reused
then the slot->thr entry should be NULL. */ then the slot->thr entry should be NULL. */
if (slot->thr != NULL) { if (slot->thr != NULL) {
ut_a(slot->in_use) ut_a(slot->in_use);
slot_trx = thr_get_trx(slot->thr); slot_trx = thr_get_trx(slot->thr);
} else { } else {
ut_a(!slot->in_use) ut_a(!slot->in_use);
slot_trx = NULL; slot_trx = NULL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment