diff options
author | stuconnolly <stuart02@gmail.com> | 2012-09-12 12:19:31 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2012-09-12 12:19:31 +0000 |
commit | 8b298de8d7ef2c680974b5c5cebb4b0056969984 (patch) | |
tree | 6e6721b2e6c5628743e953047549d5b9e909ffa8 /Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryPreparation.m | |
parent | 4bac2aa3a2feb2c7eda3064e070cac005e7fa256 (diff) | |
download | sequelpro-8b298de8d7ef2c680974b5c5cebb4b0056969984.tar.gz sequelpro-8b298de8d7ef2c680974b5c5cebb4b0056969984.tar.bz2 sequelpro-8b298de8d7ef2c680974b5c5cebb4b0056969984.zip |
Fix release build warnings.
Diffstat (limited to 'Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryPreparation.m')
-rw-r--r-- | Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryPreparation.m | 2 |
1 files changed, 1 insertions, 1 deletions
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; |