diff options
author | rowanbeentje <rowan@beent.je> | 2011-10-20 22:42:41 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2011-10-20 22:42:41 +0000 |
commit | 57fd5f88863ffec21159f132670efac343c5d48d (patch) | |
tree | 48c4f8c432dab3c025fc765785bc9877f192ef2e /Source/SPTableContent.m | |
parent | a60219ad6b0d6988635f6cde44a6c6335872f439 (diff) | |
download | sequelpro-57fd5f88863ffec21159f132670efac343c5d48d.tar.gz sequelpro-57fd5f88863ffec21159f132670efac343c5d48d.tar.bz2 sequelpro-57fd5f88863ffec21159f132670efac343c5d48d.zip |
- Fix two incorrect initialisations; thanks to sqlprodev for spotting these
Diffstat (limited to 'Source/SPTableContent.m')
-rw-r--r-- | Source/SPTableContent.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPTableContent.m b/Source/SPTableContent.m index 68b3ae55..7cffef85 100644 --- a/Source/SPTableContent.m +++ b/Source/SPTableContent.m @@ -89,7 +89,7 @@ */ - (id)init { - if ((self == [super init])) { + if ((self = [super init])) { _mainNibLoaded = NO; isWorking = NO; pthread_mutex_init(&tableValuesLock, NULL); |