aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPTablesList.m
diff options
context:
space:
mode:
authorMax <post@wickenrode.com>2015-02-03 23:01:42 +0100
committerMax <post@wickenrode.com>2015-02-03 23:01:42 +0100
commit19a1c9f81ec1ae6f5518babfb974ad7f01407b16 (patch)
treefc320b5853c8366b2302c47b713b6620cc403b52 /Source/SPTablesList.m
parent24fcf917473862ddabc2095447f3ec5c4e9081fd (diff)
downloadsequelpro-19a1c9f81ec1ae6f5518babfb974ad7f01407b16.tar.gz
sequelpro-19a1c9f81ec1ae6f5518babfb974ad7f01407b16.tar.bz2
sequelpro-19a1c9f81ec1ae6f5518babfb974ad7f01407b16.zip
Fix some minor compiler warnings
Diffstat (limited to 'Source/SPTablesList.m')
-rw-r--r--Source/SPTablesList.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPTablesList.m b/Source/SPTablesList.m
index 76f6d1ce..74523da3 100644
--- a/Source/SPTablesList.m
+++ b/Source/SPTablesList.m
@@ -1275,7 +1275,7 @@ static NSString *SPDuplicateTable = @"SPDuplicateTable";
{
NSMutableArray *returnArray = [NSMutableArray array];
NSUInteger i;
- NSInteger cnt = [[self tables] count];
+ NSUInteger cnt = [[self tables] count];
for(i=0; i<cnt; i++) {
SPTableType tt = (SPTableType)[NSArrayObjectAtIndex([self tableTypes],i) integerValue];
if(tt == SPTableTypeTable || tt == SPTableTypeView)