Commit 46ea62d5 authored by marko's avatar marko

branches/zip: Replace an ut_a() with ut_d(). This mistake was made in r1188.

parent 2b0016ed
...@@ -69,7 +69,7 @@ buf_flush_insert_into_flush_list( ...@@ -69,7 +69,7 @@ buf_flush_insert_into_flush_list(
case BUF_BLOCK_ZIP_DIRTY: case BUF_BLOCK_ZIP_DIRTY:
case BUF_BLOCK_FILE_PAGE: case BUF_BLOCK_FILE_PAGE:
ut_ad(!bpage->in_flush_list); ut_ad(!bpage->in_flush_list);
ut_a(bpage->in_flush_list = TRUE); ut_d(bpage->in_flush_list = TRUE);
UT_LIST_ADD_FIRST(list, buf_pool->flush_list, bpage); UT_LIST_ADD_FIRST(list, buf_pool->flush_list, bpage);
break; break;
case BUF_BLOCK_ZIP_FREE: case BUF_BLOCK_ZIP_FREE:
......
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