Skip to content

Commit

Permalink
r.object.geometry: fix msg typo
Browse files Browse the repository at this point in the history
  • Loading branch information
neteler committed Nov 29, 2021
1 parent a52511a commit ef0aac8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion raster/r.object.geometry/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ int main(int argc, char *argv[])
in_fd = Rast_open_old(opt_in->answer, "");

if (Rast_get_map_type(in_fd) != CELL_TYPE)
G_fatal_error(_("Input raster mus be of type CELL"));
G_fatal_error(_("Input raster must be of type CELL"));

if (opt_out->answer != NULL && strcmp(opt_out->answer, "-") != 0) {
if (!(out_fp = fopen(opt_out->answer, "w")))
Expand Down

0 comments on commit ef0aac8

Please sign in to comment.