diff options
author | Ruediger Meier | 2015-01-20 15:49:21 +0100 |
---|---|---|
committer | Ruediger Meier | 2015-01-21 11:15:19 +0100 |
commit | f205c90a72707591ad5342429d8e13fa69294ae2 (patch) | |
tree | 1509f3e51390ab2d9f4337507729da79e5f1dc00 | |
parent | build-sys: fix UL_SCANF_TYPE_MODIFIER for icc (diff) | |
download | kernel-qcow2-util-linux-f205c90a72707591ad5342429d8e13fa69294ae2.tar.gz kernel-qcow2-util-linux-f205c90a72707591ad5342429d8e13fa69294ae2.tar.xz kernel-qcow2-util-linux-f205c90a72707591ad5342429d8e13fa69294ae2.zip |
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"));
-rw-r--r-- | sys-utils/ipcrm.c | 2 | ||||
-rw-r--r-- | sys-utils/lscpu.c | 8 | ||||
-rw-r--r-- | sys-utils/rtcwake.c | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sys-utils/ipcrm.c b/sys-utils/ipcrm.c index 4b59217a6..0b40f1539 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 9b3adbcd5..82a7dbe05 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 35ca7e893..bf99a5b8f 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") && |