From 8b298de8d7ef2c680974b5c5cebb4b0056969984 Mon Sep 17 00:00:00 2001 From: stuconnolly Date: Wed, 12 Sep 2012 12:19:31 +0000 Subject: Fix release build warnings. --- Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryPreparation.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryPreparation.m') diff --git a/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryPreparation.m b/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryPreparation.m index 5d99fd8c..b2f80702 100644 --- a/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryPreparation.m +++ b/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryPreparation.m @@ -86,7 +86,7 @@ NSString *name = [[NSProcessInfo processInfo] globallyUniqueString]; - PGresult *result = PQprepare(_connection, [name UTF8String], [statement UTF8Statement], paramNum, paramTypes); + PGresult *result = PQprepare(_connection, [name UTF8String], [statement UTF8Statement], (int)paramNum, paramTypes); if (!result) return NO; -- cgit v1.2.3