[GRASS-SVN] r48731 - grass/branches/develbranch_6/db/drivers/odbc

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Oct 11 09:26:10 EDT 2011


Author: neteler
Date: 2011-10-11 06:26:10 -0700 (Tue, 11 Oct 2011)
New Revision: 48731

Modified:
   grass/branches/develbranch_6/db/drivers/odbc/describe.c
Log:
Fix type mismatch (backport trunk #48729)

Modified: grass/branches/develbranch_6/db/drivers/odbc/describe.c
===================================================================
--- grass/branches/develbranch_6/db/drivers/odbc/describe.c	2011-10-11 13:25:39 UTC (rev 48730)
+++ grass/branches/develbranch_6/db/drivers/odbc/describe.c	2011-10-11 13:26:10 UTC (rev 48731)
@@ -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