Commit 18715bef authored by Kristian Nielsen's avatar Kristian Nielsen

Post-merge fix: build error in innodb-enabled build.

parent 5f233c55
...@@ -4913,7 +4913,8 @@ os_aio_func( ...@@ -4913,7 +4913,8 @@ os_aio_func(
os_has_said_disk_full = FALSE; ret = 0; errno = 28;); os_has_said_disk_full = FALSE; ret = 0; errno = 28;);
if (!ret) { if (!ret) {
os_file_handle_error_cond_exit(name, "os_file_write_func", TRUE, FALSE); os_file_handle_error_cond_exit(name, "os_file_write_func", TRUE, FALSE,
__FILE__, __LINE__);
} }
} }
...@@ -5771,7 +5772,8 @@ os_aio_simulated_handle( ...@@ -5771,7 +5772,8 @@ os_aio_simulated_handle(
errno = 28;); errno = 28;);
if (!ret) { if (!ret) {
os_file_handle_error_cond_exit(aio_slot->name, "os_file_write_func", TRUE, FALSE); os_file_handle_error_cond_exit(aio_slot->name, "os_file_write_func", TRUE, FALSE,
__FILE__, __LINE__);
} }
} else { } else {
......
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