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/SPProcessListController.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/SPProcessListController.m')
-rw-r--r-- | Source/SPProcessListController.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPProcessListController.m b/Source/SPProcessListController.m index 2b26eb90..913035d4 100644 --- a/Source/SPProcessListController.m +++ b/Source/SPProcessListController.m @@ -252,7 +252,7 @@ static NSString *SPTableViewIDColumnIdentifier = @"Id"; defaultButton:NSLocalizedString(@"Kill", @"kill button") alternateButton:NSLocalizedString(@"Cancel", @"cancel button") otherButton:nil - informativeTextWithFormat:[NSString stringWithFormat:NSLocalizedString(@"Are you sure you want to kill the current query executing on connection ID %lld?\n\nPlease be aware that continuing to kill this query may result in data corruption. Please proceed with caution.", @"kill query informative message"), processId]]; + informativeTextWithFormat:NSLocalizedString(@"Are you sure you want to kill the current query executing on connection ID %lld?\n\nPlease be aware that continuing to kill this query may result in data corruption. Please proceed with caution.", @"kill query informative message"), processId]; NSArray *buttons = [alert buttons]; @@ -280,7 +280,7 @@ static NSString *SPTableViewIDColumnIdentifier = @"Id"; defaultButton:NSLocalizedString(@"Kill", @"kill button") alternateButton:NSLocalizedString(@"Cancel", @"cancel button") otherButton:nil - informativeTextWithFormat:[NSString stringWithFormat:NSLocalizedString(@"Are you sure you want to kill connection ID %lld?\n\nPlease be aware that continuing to kill this connection may result in data corruption. Please proceed with caution.", @"kill connection informative message"), processId]]; + informativeTextWithFormat:NSLocalizedString(@"Are you sure you want to kill connection ID %lld?\n\nPlease be aware that continuing to kill this connection may result in data corruption. Please proceed with caution.", @"kill connection informative message"), processId]; NSArray *buttons = [alert buttons]; |