Use size_t instead of int for loop counter

This commit is contained in:
Adam Baratz 2016-07-01 15:39:02 -04:00 committed by Nikita Popov
parent 4576c41291
commit f22bc6438d

View file

@ -148,7 +148,7 @@ static int dblib_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unqu
int useBinaryEncoding = 0;
const char * hex = "0123456789abcdef";
int i;
size_t i;
char * q;
*quotedlen = 0;