Skip to content

Commit 0a43236

Browse files
author
Jan Lindström
committed
Code cleanup.
1 parent 3bbffc2 commit 0a43236

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

storage/innobase/fil/fil0fil.cc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5598,8 +5598,9 @@ fil_io(
55985598

55995599
if (!ret) {
56005600
return(DB_OUT_OF_FILE_SPACE);
5601-
} else {
5602-
} return(DB_SUCCESS);
5601+
}
5602+
5603+
return(DB_SUCCESS);
56035604
}
56045605

56055606
#ifndef UNIV_HOTBACKUP

storage/xtradb/fil/fil0fil.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5650,9 +5650,9 @@ _fil_io(
56505650

56515651
if (!ret) {
56525652
return(DB_OUT_OF_FILE_SPACE);
5653-
} else {
5654-
return(DB_SUCCESS);
56555653
}
5654+
5655+
return(DB_SUCCESS);
56565656
}
56575657

56585658
#ifndef UNIV_HOTBACKUP

0 commit comments

Comments
 (0)