summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-05-03 12:37:45 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-05-03 12:37:45 -0500
commit5f52ceba02402bcc985558cd0f8d89964f6c15b6 (patch)
treefabefe8fc1f0920e113b9384348b8680ca67ccad
parentfdf6d34084255fa4e17833f8ef93626e5dd926e6 (diff)
downloadkrusader-5f52ceba02402bcc985558cd0f8d89964f6c15b6.tar.gz
krusader-5f52ceba02402bcc985558cd0f8d89964f6c15b6.zip
Fix 'format not a string literal' error
-rw-r--r--krusader/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/krusader/main.cpp b/krusader/main.cpp
index 973234d..f44d37d 100644
--- a/krusader/main.cpp
+++ b/krusader/main.cpp
@@ -199,7 +199,7 @@ int main(int argc, char *argv[]) {
exit( 0 );
TQCString regName = client->registerAs( KApplication::kApplication() ->name(), !singleInstanceMode );
if( singleInstanceMode && regName != KApplication::kApplication()->name() ) {
- fprintf( stderr, i18n( "Application already running!\n" ).ascii() );
+ fprintf( stderr, "%s", i18n( "Application already running!\n" ).ascii() );
DCOPClient::mainClient()->send( KApplication::kApplication() ->name(), "Krusader-Interface",
"moveToTop()", TQByteArray() );