Przeglądaj źródła

i.evapo.pm: Fix missing output description (#1275)

Addresses -Wunused-value compiler warning.
nila 4 lat temu
rodzic
commit
d1edbdd2e9
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      imagery/i.evapo.pm/main.c

+ 1 - 1
imagery/i.evapo.pm/main.c

@@ -86,7 +86,7 @@ int main(int argc, char *argv[])
     input_hc->description = _("Name of input crop height raster map [m]");
 
     output = G_define_standard_option(G_OPT_R_OUTPUT);
-	_("Name for output raster map [mm/h]");
+    output->description = _("Name for output raster map [mm/h]");
 
     zero = G_define_flag();
     zero->key = 'z';