Skip to content

Commit 18715be

Browse files
committed
Post-merge fix: build error in innodb-enabled build.
1 parent 5f233c5 commit 18715be

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

storage/innobase/os/os0file.cc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4913,7 +4913,8 @@ os_aio_func(
49134913
os_has_said_disk_full = FALSE; ret = 0; errno = 28;);
49144914

49154915
if (!ret) {
4916-
os_file_handle_error_cond_exit(name, "os_file_write_func", TRUE, FALSE);
4916+
os_file_handle_error_cond_exit(name, "os_file_write_func", TRUE, FALSE,
4917+
__FILE__, __LINE__);
49174918
}
49184919
}
49194920

@@ -5771,7 +5772,8 @@ os_aio_simulated_handle(
57715772
errno = 28;);
57725773

57735774
if (!ret) {
5774-
os_file_handle_error_cond_exit(aio_slot->name, "os_file_write_func", TRUE, FALSE);
5775+
os_file_handle_error_cond_exit(aio_slot->name, "os_file_write_func", TRUE, FALSE,
5776+
__FILE__, __LINE__);
57755777
}
57765778

57775779
} else {

0 commit comments

Comments
 (0)