[GRASS-SVN] r48729 - grass/trunk/db/drivers/odbc

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Oct 11 09:04:13 EDT 2011


Author: glynn
Date: 2011-10-11 06:04:13 -0700 (Tue, 11 Oct 2011)
New Revision: 48729

Modified:
   grass/trunk/db/drivers/odbc/describe.c
Log:
Fix type mismatch


Modified: grass/trunk/db/drivers/odbc/describe.c
===================================================================
--- grass/trunk/db/drivers/odbc/describe.c	2011-10-11 09:59:46 UTC (rev 48728)
+++ grass/trunk/db/drivers/odbc/describe.c	2011-10-11 13:04:13 UTC (rev 48729)
@@ -66,7 +66,8 @@
      dbTable **table;
 {
     dbColumn *column;
-    int col, intval;
+    int col;
+    SQLLEN intval;
     SQLUSMALLINT ncols;
     SQLRETURN ret;
     SQLCHAR charval[100];



More information about the grass-commit mailing list