From: Ruediger Meier Date: Tue, 20 Jan 2015 14:49:21 +0000 (+0100) Subject: build: fix printf warnings for icc (-Wformat-security) X-Git-Tag: v2.26-rc2~77^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f205c90a72707591ad5342429d8e13fa69294ae2;p=thirdparty%2Futil-linux.git build: fix printf warnings for icc (-Wformat-security) Intel compiler complains about printf style function calls with trivial format string and no other arguments. Like this one: ../sys-utils/ipcrm.c(117): warning #2279: printf/scanf format not a string literal and no format arguments err(EXIT_FAILURE, iskey ? _("key failed") : _("id failed")); --- diff --git a/sys-utils/ipcrm.c b/sys-utils/ipcrm.c index 4b59217a6d..0b40f1539b 100644 --- a/sys-utils/ipcrm.c +++ b/sys-utils/ipcrm.c @@ -114,7 +114,7 @@ static int remove_id(int type, int iskey, int id) errmsg = iskey ? _("already removed key") : _("already removed id"); break; default: - err(EXIT_FAILURE, iskey ? _("key failed") : _("id failed")); + err(EXIT_FAILURE, "%s", iskey ? _("key failed") : _("id failed")); } warnx("%s (%d)", errmsg, id); return 1; diff --git a/sys-utils/lscpu.c b/sys-utils/lscpu.c index 9b3adbcd58..82a7dbe05c 100644 --- a/sys-utils/lscpu.c +++ b/sys-utils/lscpu.c @@ -1242,20 +1242,20 @@ get_cell_data(struct lscpu_desc *desc, int idx, int col, if (!desc->configured) break; if (mod->mode == OUTPUT_PARSABLE) - snprintf(buf, bufsz, + snprintf(buf, bufsz, "%s", desc->configured[idx] ? _("Y") : _("N")); else - snprintf(buf, bufsz, + snprintf(buf, bufsz, "%s", desc->configured[idx] ? _("yes") : _("no")); break; case COL_ONLINE: if (!desc->online) break; if (mod->mode == OUTPUT_PARSABLE) - snprintf(buf, bufsz, + snprintf(buf, bufsz, "%s", is_cpu_online(desc, cpu) ? _("Y") : _("N")); else - snprintf(buf, bufsz, + snprintf(buf, bufsz, "%s", is_cpu_online(desc, cpu) ? _("yes") : _("no")); break; case COL_MAXMHZ: diff --git a/sys-utils/rtcwake.c b/sys-utils/rtcwake.c index 35ca7e8938..bf99a5b8fa 100644 --- a/sys-utils/rtcwake.c +++ b/sys-utils/rtcwake.c @@ -492,7 +492,7 @@ int main(int argc, char **argv) } } if (verbose) - printf(clock_mode == CM_UTC ? _("Using UTC time.\n") : + printf("%s", clock_mode == CM_UTC ? _("Using UTC time.\n") : _("Using local time.\n")); if (!alarm && !seconds && strcmp(suspend,"disable") &&