From f22bc6438dcaf55bf80e7be972f3374d31dbaae5 Mon Sep 17 00:00:00 2001 From: Adam Baratz Date: Fri, 1 Jul 2016 15:39:02 -0400 Subject: [PATCH] Use size_t instead of int for loop counter --- ext/pdo_dblib/dblib_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/pdo_dblib/dblib_driver.c b/ext/pdo_dblib/dblib_driver.c index ad54ae57b3..d071027e59 100644 --- a/ext/pdo_dblib/dblib_driver.c +++ b/ext/pdo_dblib/dblib_driver.c @@ -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; -- 2.40.0