소스 검색

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

Addresses -Wunused-value compiler warning.
nila 4 년 전
부모
커밋
d1edbdd2e9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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';