From b95bd9af8c62c60bc4242fa593996775f0d3341b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Sun, 22 Mar 2015 04:05:06 +0100 Subject: [PATCH] anaconda: fix compile warnings --- anaconda/utils/dd/dd_extract.c | 2 +- anaconda/utils/dd/dd_list.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/anaconda/utils/dd/dd_extract.c b/anaconda/utils/dd/dd_extract.c index b6d6af5..46c8426 100644 --- a/anaconda/utils/dd/dd_extract.c +++ b/anaconda/utils/dd/dd_extract.c @@ -67,7 +67,7 @@ static const char *options_help [][2] = { void show_help() { int i; - printf(usage); + printf("%s", usage); for (i=0; options_help[i][0]; i++) { printf(" -%c, --%-20s %s\n", options_help[i][0][0], options_help[i][0], diff --git a/anaconda/utils/dd/dd_list.c b/anaconda/utils/dd/dd_list.c index 6fb19ca..28ce8d5 100644 --- a/anaconda/utils/dd/dd_list.c +++ b/anaconda/utils/dd/dd_list.c @@ -72,7 +72,7 @@ int globErrFunc(const char *epath, int eerrno) void show_help() { int i; - printf(usage); + printf("%s", usage); for (i=0; options_help[i][0]; i++) { printf(" -%c, --%-20s %s\n", options_help[i][0][0], options_help[i][0],