[GRASS-SVN] r51603 - grass/trunk/include
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed May 9 01:52:03 EDT 2012
Author: glynn
Date: 2012-05-08 22:52:03 -0700 (Tue, 08 May 2012)
New Revision: 51603
Modified:
grass/trunk/include/gis.h
Log:
Fix type of checker field in struct Option
Modified: grass/trunk/include/gis.h
===================================================================
--- grass/trunk/include/gis.h 2012-05-08 13:35:08 UTC (rev 51602)
+++ grass/trunk/include/gis.h 2012-05-09 05:52:03 UTC (rev 51603)
@@ -399,7 +399,7 @@
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;
};
More information about the grass-commit
mailing list