diff options
author | sqlprodev <sqlprodev@northofthree.com> | 2011-03-01 19:38:23 +0000 |
---|---|---|
committer | sqlprodev <sqlprodev@northofthree.com> | 2011-03-01 19:38:23 +0000 |
commit | 761a00170b4a511e4dd615a208da1ee93a6b1a1e (patch) | |
tree | 57531ed23925153b42f76e3b510a895108ae22ce /Source/SPNotLoaded.m | |
parent | 4ffd7b043ca505e52b7f1c5a463e02534997c197 (diff) | |
download | sequelpro-761a00170b4a511e4dd615a208da1ee93a6b1a1e.tar.gz sequelpro-761a00170b4a511e4dd615a208da1ee93a6b1a1e.tar.bz2 sequelpro-761a00170b4a511e4dd615a208da1ee93a6b1a1e.zip |
fixed compiler warnings
Diffstat (limited to 'Source/SPNotLoaded.m')
-rw-r--r-- | Source/SPNotLoaded.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPNotLoaded.m b/Source/SPNotLoaded.m index 9ce0fec2..4e2925a7 100644 --- a/Source/SPNotLoaded.m +++ b/Source/SPNotLoaded.m @@ -52,7 +52,7 @@ static SPNotLoaded *notLoaded = nil; Class notLoadedClass = [self class]; @synchronized(notLoadedClass) { if (notLoaded == nil) { - if (self = [super init]) { + if ((self = [super init])) { notLoaded = self; } } |