diff options
author | Tom Rini | 2017-05-10 15:26:06 -0400 |
---|---|---|
committer | Tom Rini | 2017-05-12 08:37:40 -0400 |
commit | 9444387838a49c0ad4860eb9531015d836a8a007 (patch) | |
tree | 814d7db40beeec57c2fc2ae6a92142d0552cfc2c /net | |
parent | 667d6856973c725331f70eb9f36fee8897123316 (diff) |
net: Disable the format-extra-args warning
We will see warnings such as:
net/eth_common.c:57:61: warning: data argument not used by format string [-Wformat-extra-args]
sprintf(enetvar, index ? "%s%daddr" : "%saddr", base_name, index);
~~~~~~~~ ^
With clang. In this case we do not want to re-write our code to be less
compact as the above is intentional and readable. Add a comment above
the disabling so that it's clear why we want that warning off.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index f03d6083268..ae54eee5afe 100644 --- a/net/Makefile +++ b/net/Makefile @@ -25,3 +25,8 @@ obj-$(CONFIG_CMD_PING) += ping.o obj-$(CONFIG_CMD_RARP) += rarp.o obj-$(CONFIG_CMD_SNTP) += sntp.o obj-$(CONFIG_CMD_NET) += tftp.o + +# Disable this warning as it is triggered by: +# sprintf(buf, index ? "foo%d" : "foo", index) +# and this is intentional usage. +CFLAGS_eth_common.o += -Wno-format-extra-args |