Commit df6107de authored by marko's avatar marko

branches/zip: trx_commit_for_mysql(): Replace ut_a(err)

with ut_a(err == DB_SUCCESS).
parent a8a3521b
......@@ -1576,7 +1576,7 @@ trx_commit_for_mysql(
ulint err;
err = trx->sync_cb(trx, TRUE);
ut_a(err);
ut_a(err == DB_SUCCESS);
trx->sync_cb = 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