List:Commits« Previous MessageNext Message »
From:jwinstead Date:February 23 2007 10:24pm
Subject:Connector/ODBC 3.51 commit: r219 - trunk/driver
View as plain text  
Modified:
   trunk/driver/cursor.c
Log:
Fix warning (comparing unsigned to signed)


Modified: trunk/driver/cursor.c
===================================================================
--- trunk/driver/cursor.c	2007-02-23 20:20:02 UTC (rev 218)
+++ trunk/driver/cursor.c	2007-02-23 22:24:52 UTC (rev 219)
@@ -624,7 +624,7 @@
   MYSQL_RES    *result= stmt->result;
   MYSQL_RES    *presultAllColumns;
   char          select[NAME_LEN+30];
-  int           i, j;
+  unsigned int  i,j;
 
   MYODBCDbgEnter;
 

Thread
Connector/ODBC 3.51 commit: r219 - trunk/driverjwinstead23 Feb