Skip to content

Commit

Permalink
d.linegraph: fix CLI parameter type (width in D_line_width is double …
Browse files Browse the repository at this point in the history
…not int)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@72558 15284696-431f-4ddb-bdfa-cd5b030d7da7
  • Loading branch information
wenzeslaus committed Mar 24, 2018
1 parent d017094 commit 31b8f2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion display/d.linegraph/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ int main(int argc, char **argv)
secondary_width_opt = G_define_option();
secondary_width_opt->key = "secondary_width";
secondary_width_opt->description = _("Width of point symbol lines");
secondary_width_opt->type = TYPE_INTEGER;
secondary_width_opt->type = TYPE_DOUBLE;
secondary_width_opt->required = NO;
secondary_width_opt->multiple = YES;
secondary_width_opt->answer = "0.1";
Expand Down

0 comments on commit 31b8f2c

Please sign in to comment.