Skip to content

Commit 7787a88

Browse files
authored
Update flashcache_subr.c
1 parent 1624b76 commit 7787a88

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/flashcache_subr.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -739,10 +739,10 @@ flashcache_bio_endio(struct bio *bio, int error,
739739
#elif LINUX_VERSION_CODE < KERNEL_VERSION(4,3,0)
740740
bio_endio(bio, error);
741741
#elif LINUX_VERSION_CODE < KERNEL_VERSION(4,13,0)
742-
bio->bi_error = error;
743-
bio_endio(bio);
742+
bio->bi_error = error;
743+
bio_endio(bio);
744744
#else
745-
bio->bi_status = error;
745+
bio->bi_status = error;
746746
bio_endio(bio);
747747
#endif
748748
}

0 commit comments

Comments
 (0)