Skip to content

Commit

Permalink
Fix formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
brendan-ward committed May 23, 2022
1 parent 79464ab commit 3ed0474
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/spatial_ref/srs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,15 @@ impl CoordTransform {
let msg = match _last_cpl_err(CPLErr::CE_Failure) {
GdalError::CplError { msg, .. } => match msg.is_empty() {
false => Some(msg),
_ => None
_ => None,
},
err => return Err(err)
err => return Err(err),
};
return Err(GdalError::InvalidCoordinateRange {
from: self.from.clone(),
to: self.to.clone(),
msg,
})
});
}

Ok([out_xmin, out_ymin, out_xmax, out_ymax])
Expand Down

0 comments on commit 3ed0474

Please sign in to comment.