clippy fix

This commit is contained in:
Michael Angerman 2021-10-27 08:35:42 -07:00
parent 9baf720156
commit c114f41545

View File

@ -66,10 +66,10 @@ fn rows_to_skip(count: i64, rows: Option<i64>) -> i64 {
}; };
if end_rows_desired < count { if end_rows_desired < count {
return count - end_rows_desired; count - end_rows_desired
} else { } else {
return 0; 0
}; }
} }
#[cfg(test)] #[cfg(test)]