Commit d901919d authored by Marko Mäkelä's avatar Marko Mäkelä

MDEV-19747: Fix a warning

In commit fc2f2fa8
we replaced FlushObserver* with bool, but forgot to
replace one NULL with false.
parent 37dc087f
...@@ -2330,7 +2330,7 @@ fil_delete_tablespace( ...@@ -2330,7 +2330,7 @@ fil_delete_tablespace(
To deal with potential read requests, we will check the To deal with potential read requests, we will check the
::stop_new_ops flag in fil_io(). */ ::stop_new_ops flag in fil_io(). */
buf_LRU_flush_or_remove_pages(id, NULL); buf_LRU_flush_or_remove_pages(id, false);
/* If it is a delete then also delete any generated files, otherwise /* If it is a delete then also delete any generated files, otherwise
when we drop the database the remove directory will fail. */ when we drop the database the remove directory will fail. */
......
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