Skip to content

Commit

Permalink
v.in.pdal: fix filtering by bbox (#359)
Browse files Browse the repository at this point in the history
  • Loading branch information
petrasovaa committed Feb 19, 2020
1 parent 2e568b9 commit 152ac1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vector/v.in.pdal/filters.c
Expand Up @@ -25,7 +25,7 @@
int spatial_filter_from_option(struct Option *option, double *xmin,
double *ymin, double *xmax, double *ymax)
{
if (option->answer)
if (!option->answer)
return FALSE;
int arg_s_num = 0;
int i = 0;
Expand Down

0 comments on commit 152ac1e

Please sign in to comment.