1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 01:48:26 +02:00

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
+1 -1
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;