diff options
author | stuconnolly <stuart02@gmail.com> | 2012-09-09 12:08:23 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2012-09-09 12:08:23 +0000 |
commit | bc39e252aed0269716525a39c5f2e034f1d56c19 (patch) | |
tree | 85870588d0ec1ac3c1715beb12c03fb40c331014 /Frameworks/PostgresKit/Source/FLXPostgresResult.m | |
parent | cb6a338da45d92e697335a6d066cdc9be6d4474b (diff) | |
download | sequelpro-bc39e252aed0269716525a39c5f2e034f1d56c19.tar.gz sequelpro-bc39e252aed0269716525a39c5f2e034f1d56c19.tar.bz2 sequelpro-bc39e252aed0269716525a39c5f2e034f1d56c19.zip |
Add support for network address types.
Diffstat (limited to 'Frameworks/PostgresKit/Source/FLXPostgresResult.m')
-rw-r--r-- | Frameworks/PostgresKit/Source/FLXPostgresResult.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Frameworks/PostgresKit/Source/FLXPostgresResult.m b/Frameworks/PostgresKit/Source/FLXPostgresResult.m index 303533bb..2da1a78f 100644 --- a/Frameworks/PostgresKit/Source/FLXPostgresResult.m +++ b/Frameworks/PostgresKit/Source/FLXPostgresResult.m @@ -149,7 +149,7 @@ static NSString *FLXPostgresResultError = @"FLXPostgresResultError"; data = (type == FLXPostgresResultRowAsArray) ? [NSMutableArray arrayWithCapacity:_numberOfFields] : [NSMutableDictionary dictionaryWithCapacity:_numberOfFields]; - for (unsigned int i = 0; i < _numberOfFields; i++) + for (NSUInteger i = 0; i < _numberOfFields; i++) { id object = [self _objectForRow:(int)_row column:i]; |