[GRASS-SVN] r33467 - grass/branches/develbranch_6/include
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Sep 16 04:20:24 EDT 2008
Author: hamish
Date: 2008-09-16 04:20:24 -0400 (Tue, 16 Sep 2008)
New Revision: 33467
Modified:
grass/branches/develbranch_6/include/gis.h
Log:
Fix G_DEV_NULL definition (strings need double-quotes, not single quotes) (merge from trunk)
Modified: grass/branches/develbranch_6/include/gis.h
===================================================================
--- grass/branches/develbranch_6/include/gis.h 2008-09-16 08:17:06 UTC (rev 33466)
+++ grass/branches/develbranch_6/include/gis.h 2008-09-16 08:20:24 UTC (rev 33467)
@@ -149,10 +149,10 @@
#define GRASS_DIRSEP '/'
#ifdef __MINGW32__
# define HOST_DIRSEP '\\'
-# define G_DEV_NULL 'NUL:'
+# define G_DEV_NULL "NUL:"
#else
# define HOST_DIRSEP '/'
-# define G_DEV_NULL '/dev/null'
+# define G_DEV_NULL "/dev/null"
#endif
/**/ typedef enum
More information about the grass-commit
mailing list