瀏覽代碼

Fix type of checker field in struct Option

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@51603 15284696-431f-4ddb-bdfa-cd5b030d7da7
Glynn Clements 13 年之前
父節點
當前提交
76cfe55dc0
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      include/gis.h

+ 1 - 1
include/gis.h

@@ -399,7 +399,7 @@ struct Option			/* Structure that stores option info */
     const char *guidependency;  /* GUI dependency, list of options
 				   (separated by commas) to be updated
 				   if the value is chanched */
-    int (*checker) ();		/* Routine to check answer or NULL  */
+    int (*checker)(const char *);/* Routine to check answer or NULL  */
     int count;
 };