[GRASS-SVN] r57847 - grass/trunk/lib/imagery
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Sep 26 13:46:04 PDT 2013
Author: turek
Date: 2013-09-26 13:46:04 -0700 (Thu, 26 Sep 2013)
New Revision: 57847
Modified:
grass/trunk/lib/imagery/list_subgp.c
Log:
list subgroup: wrong pointer type fix
Modified: grass/trunk/lib/imagery/list_subgp.c
===================================================================
--- grass/trunk/lib/imagery/list_subgp.c 2013-09-26 20:32:19 UTC (rev 57846)
+++ grass/trunk/lib/imagery/list_subgp.c 2013-09-26 20:46:04 UTC (rev 57847)
@@ -30,8 +30,8 @@
This approach should make the function usable in more cases. */
char **subgs;
- char *path[GPATH_MAX];
- char *buf[GPATH_MAX];
+ char path[GPATH_MAX];
+ char buf[GPATH_MAX];
const char *mapset;
struct stat sb;
More information about the grass-commit
mailing list