Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/predictor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ pub(crate) fn unpredict_float(
64 => rev_predict_f64(in_buf, out_buf, predictor_info.samples_per_pixel as _),
_ => {
return Err(AsyncTiffError::General(format!(
"thou shalt not predict f{bit_depth:?}"
"No predictor support for f{bit_depth:?}"
)))
}
}
Expand All @@ -303,7 +303,7 @@ pub(crate) fn unpredict_float(
64 => rev_predict_f64(in_buf, &mut out_row, predictor_info.samples_per_pixel as _),
_ => {
return Err(AsyncTiffError::General(format!(
"thou shalt not predict f{bit_depth:?}"
"No predictor support for f{bit_depth:?}"
)))
}
}
Expand Down