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],