aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPTextView.m
diff options
context:
space:
mode:
authorsqlprodev <sqlprodev@northofthree.com>2011-03-01 21:00:55 +0000
committersqlprodev <sqlprodev@northofthree.com>2011-03-01 21:00:55 +0000
commitcd09dcd69813400b098b9f019a558efb11e6c8b2 (patch)
tree930e4c45038ec9f0258106608ad47af34fec8ca8 /Source/SPTextView.m
parentf1db829abc716f0cc498c0dabe8ecb1375dfa312 (diff)
downloadsequelpro-cd09dcd69813400b098b9f019a558efb11e6c8b2.tar.gz
sequelpro-cd09dcd69813400b098b9f019a558efb11e6c8b2.tar.bz2
sequelpro-cd09dcd69813400b098b9f019a558efb11e6c8b2.zip
fixed compiler warnings
Diffstat (limited to 'Source/SPTextView.m')
-rw-r--r--Source/SPTextView.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/SPTextView.m b/Source/SPTextView.m
index 2fcebd14..769d4be8 100644
--- a/Source/SPTextView.m
+++ b/Source/SPTextView.m
@@ -33,6 +33,7 @@
#import "SPAlertSheets.h"
#import "RegexKitLite.h"
#import "SPBundleHTMLOutputController.h"
+#import "SPDatabaseViewController.h"
#pragma mark -
#pragma mark lex init
@@ -2673,7 +2674,7 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse)
BOOL allowToCheckForUpperCase;
// now loop through all the tokens
- while (token=yylex()){
+ while ((token=yylex())){
allowToCheckForUpperCase = YES;