ソースを参照

map= is required

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@40984 15284696-431f-4ddb-bdfa-cd5b030d7da7
Glynn Clements 15 年 前
コミット
e0848569cf
1 ファイル変更2 行追加2 行削除
  1. 2 2
      raster/r.colors.out/main.c

+ 2 - 2
raster/r.colors.out/main.c

@@ -66,13 +66,13 @@ int main(int argc, char **argv)
 	_("Exports the color table associated with a raster map layer.");
 
     opt.map = G_define_standard_option(G_OPT_R_MAP);
-    opt.map->required = NO;
+    opt.map->required = YES;
     opt.map->guisection = _("Required");
 
     opt.file = G_define_standard_option(G_OPT_F_OUTPUT);
     opt.file->key = "rules";
     opt.file->required = NO;
-    opt.file->description = _("Path to rules file (\"-\" to write rules to stdin)");
+    opt.file->description = _("Path to rules file (\"-\" to write rules to stdout)");
 
     flag.p = G_define_flag();
     flag.p->key = 'p';