Fix method name mismatch

FossilOrigin-Name: 770a096b55820c6e2d290aebabc455ecda51560c1e1ef99ceb9b04c6b2f9a00d
This commit is contained in:
Jonathan Schleifer 2021-04-29 22:46:16 +00:00
parent f4cee3b139
commit f29fb9fa8c

View file

@ -68,12 +68,12 @@ convertType(PGresult *res, int column, OFString *string)
@end @end
@implementation PGResultRow @implementation PGResultRow
+ (instancetype)rowWithResult: (PGResult *)result row: (int)row + (instancetype)pg_rowWithResult: (PGResult *)result row: (int)row
{ {
return [[[self alloc] initWithResult: result row: row] autorelease]; return [[[self alloc] pg_initWithResult: result row: row] autorelease];
} }
- (instancetype)initWithResult: (PGResult *)result row: (int)row - (instancetype)pg_initWithResult: (PGResult *)result row: (int)row
{ {
self = [super init]; self = [super init];