diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-05-03 12:37:45 -0500 |
|---|---|---|
| committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-05-03 12:37:45 -0500 |
| commit | 5f52ceba02402bcc985558cd0f8d89964f6c15b6 (patch) | |
| tree | fabefe8fc1f0920e113b9384348b8680ca67ccad | |
| parent | fdf6d34084255fa4e17833f8ef93626e5dd926e6 (diff) | |
| download | krusader-5f52ceba02402bcc985558cd0f8d89964f6c15b6.tar.gz krusader-5f52ceba02402bcc985558cd0f8d89964f6c15b6.zip | |
Fix 'format not a string literal' error
| -rw-r--r-- | krusader/main.cpp | 2 |
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() ); |
