From e0812d5ad15391758fa5ad635c0cd0226409bee1 Mon Sep 17 00:00:00 2001 From: Nils Maier Date: Sat, 13 Dec 2014 17:31:26 +0100 Subject: [PATCH] Fix another printf related warning --- src/Context.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Context.cc b/src/Context.cc index 32d6e6e1..f538fabd 100644 --- a/src/Context.cc +++ b/src/Context.cc @@ -134,8 +134,7 @@ void showFiles } else #endif // ENABLE_METALINK { - printf(MSG_NOT_TORRENT_METALINK); - printf("\n\n"); + printf("%s\n\n", MSG_NOT_TORRENT_METALINK); } } catch(RecoverableException& e) { global::cout()->printf("%s\n", e.stackTrace().c_str());