mirror of
https://github.com/gnustep/libs-sqlclient.git
synced 2025-02-21 19:01:03 +00:00
fixup format string error
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/sqlclient/trunk@36278 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1e02d0189f
commit
803a67ff54
1 changed files with 1 additions and 1 deletions
|
@ -1622,7 +1622,7 @@ static unsigned int maxConnections = 8;
|
||||||
|
|
||||||
- (NSString*) quoteBigInteger: (int64_t)i
|
- (NSString*) quoteBigInteger: (int64_t)i
|
||||||
{
|
{
|
||||||
return [NSString stringWithFormat: @"%lld", i];
|
return [NSString stringWithFormat: @"%"PRId64, i];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSString*) quoteCString: (const char *)s
|
- (NSString*) quoteCString: (const char *)s
|
||||||
|
|
Loading…
Reference in a new issue