diff options
author | stuconnolly <stuart02@gmail.com> | 2013-02-17 11:57:48 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2013-02-17 11:57:48 +0000 |
commit | de952b797635d1d19a0357ba396b5e6be9f40624 (patch) | |
tree | cb3158a3348f1c09277ef11e1b6687c9adb864d5 /Source/SPCopyTable.m | |
parent | 37253fa9894c9ff40b07c001b77c77b3e7e59368 (diff) | |
download | sequelpro-de952b797635d1d19a0357ba396b5e6be9f40624.tar.gz sequelpro-de952b797635d1d19a0357ba396b5e6be9f40624.tar.bz2 sequelpro-de952b797635d1d19a0357ba396b5e6be9f40624.zip |
Fix more warnings.
Diffstat (limited to 'Source/SPCopyTable.m')
-rw-r--r-- | Source/SPCopyTable.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPCopyTable.m b/Source/SPCopyTable.m index 807a204d..f6f98219 100644 --- a/Source/SPCopyTable.m +++ b/Source/SPCopyTable.m @@ -1274,7 +1274,7 @@ static const NSInteger kBlobAsImageFile = 4; [env setObject:[infoPath stringByDeletingLastPathComponent] forKey:SPBundleShellVariableBundlePath]; [env setObject:bundleInputFilePath forKey:SPBundleShellVariableInputFilePath]; - if([[self delegate] respondsToSelector:@selector(usedQuery)] && [[self delegate] usedQuery]) + if ([[self delegate] respondsToSelector:@selector(usedQuery)] && [[self delegate] usedQuery]) [env setObject:[[self delegate] usedQuery] forKey:SPBundleShellVariableUsedQueryForTable]; [env setObject:bundleInputTableMetaDataFilePath forKey:SPBundleShellVariableInputTableMetaData]; |