From 07b3ed5715c92062b849742c540bb265e7381a63 Mon Sep 17 00:00:00 2001 From: rfm Date: Tue, 5 Mar 2013 15:16:07 +0000 Subject: [PATCH] fixup format string error git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/sqlclient/trunk@36278 72102866-910b-0410-8b05-ffd578937521 --- SQLClient.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SQLClient.m b/SQLClient.m index a2ee90a..1790228 100644 --- a/SQLClient.m +++ b/SQLClient.m @@ -1622,7 +1622,7 @@ static unsigned int maxConnections = 8; - (NSString*) quoteBigInteger: (int64_t)i { - return [NSString stringWithFormat: @"%lld", i]; + return [NSString stringWithFormat: @"%"PRId64, i]; } - (NSString*) quoteCString: (const char *)s