[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <016aabe2639668b4710b73157ea39e8f97f7d726.1561463345.git.baruch@tkos.co.il>
Date: Tue, 25 Jun 2019 14:49:04 +0300
From: Baruch Siach <baruch@...s.co.il>
To: Stephen Hemminger <stephen@...workplumber.org>,
Jiri Pirko <jiri@...lanox.com>
Cc: netdev@...r.kernel.org, Baruch Siach <baruch@...s.co.il>,
Aya Levin <ayal@...lanox.com>,
Moshe Shemesh <moshe@...lanox.com>
Subject: [PATCH iproute2 1/2] devlink: fix format string warning for 32bit targets
32bit targets define uint64_t as long long unsigned. This leads to the
following build warning:
devlink.c: In function ‘pr_out_u64’:
devlink.c:1729:11: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 4 has type ‘uint64_t {aka long long unsigned int}’ [-Wformat=]
pr_out("%s %lu", name, val);
^
devlink.c:59:21: note: in definition of macro ‘pr_out’
fprintf(stdout, ##args); \
^~~~
Use 'll' length modifier in the format string to fix that.
Cc: Aya Levin <ayal@...lanox.com>
Cc: Moshe Shemesh <moshe@...lanox.com>
Signed-off-by: Baruch Siach <baruch@...s.co.il>
---
devlink/devlink.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/devlink/devlink.c b/devlink/devlink.c
index 436935f88bda..b400fab17578 100644
--- a/devlink/devlink.c
+++ b/devlink/devlink.c
@@ -1726,9 +1726,9 @@ static void pr_out_u64(struct dl *dl, const char *name, uint64_t val)
jsonw_u64_field(dl->jw, name, val);
} else {
if (g_indent_newline)
- pr_out("%s %lu", name, val);
+ pr_out("%s %llu", name, val);
else
- pr_out(" %s %lu", name, val);
+ pr_out(" %s %llu", name, val);
}
}
@@ -1753,7 +1753,7 @@ static void pr_out_uint64_value(struct dl *dl, uint64_t value)
if (dl->json_output)
jsonw_u64(dl->jw, value);
else
- pr_out(" %lu", value);
+ pr_out(" %llu", value);
}
static void pr_out_binary_value(struct dl *dl, uint8_t *data, uint32_t len)
--
2.20.1
Powered by blists - more mailing lists