diff options
author | Marius Ursache <bamse16@yahoo.com> | 2013-11-09 23:22:06 +1100 |
---|---|---|
committer | Marius Ursache <bamse16@yahoo.com> | 2013-11-09 23:22:06 +1100 |
commit | a80262df96d4b5140cc4a2f7ec5d19bc727d9000 (patch) | |
tree | 5804f95c60655f89d96d493596440893a17deaf1 /Source/SPEditorPreferencePane.m | |
parent | ea11cc2178b3d8fb7f9e0952bb9dce1eaddbe8ea (diff) | |
download | sequelpro-a80262df96d4b5140cc4a2f7ec5d19bc727d9000.tar.gz sequelpro-a80262df96d4b5140cc4a2f7ec5d19bc727d9000.tar.bz2 sequelpro-a80262df96d4b5140cc4a2f7ec5d19bc727d9000.zip |
Cleaned up Format string is not a string literal (potentially insecure) errors
Diffstat (limited to 'Source/SPEditorPreferencePane.m')
-rw-r--r-- | Source/SPEditorPreferencePane.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPEditorPreferencePane.m b/Source/SPEditorPreferencePane.m index 186af05a..027b5f8c 100644 --- a/Source/SPEditorPreferencePane.m +++ b/Source/SPEditorPreferencePane.m @@ -909,7 +909,7 @@ static NSString *SPCustomColorSchemeNameLC = @"user-defined"; defaultButton:NSLocalizedString(@"OK", @"OK button") alternateButton:nil otherButton:nil - informativeTextWithFormat:err]; + informativeTextWithFormat:@"%@", err]; [alert setAlertStyle:NSCriticalAlertStyle]; [alert runModal]; |