* [PATCH] datatype: Change "%Zx" to "%zx" and "%Zu" to "%zu"
@ 2017-10-08 20:30 Harsha Sharma
0 siblings, 0 replies; only message in thread
From: Harsha Sharma @ 2017-10-08 20:30 UTC (permalink / raw)
To: pablo; +Cc: netfilter-devel, outreachy-kernel, Harsha Sharma
Use "%zx" and "%zu" over "%Zx" and "%Zu" respectively as "%Zx" and "%Zu"
is non-standard C.
Signed-off-by: Harsha Sharma <harshasharmaiitr@gmail.com>
---
src/datatype.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/datatype.c b/src/datatype.c
index 94b1224..34dda84 100644
--- a/src/datatype.c
+++ b/src/datatype.c
@@ -239,7 +239,7 @@ void symbol_table_print(const struct symbol_table *tbl,
static void invalid_type_print(const struct expr *expr, struct output_ctx *octx)
{
- nft_gmp_print(octx, "0x%Zx [invalid type]", expr->value);
+ nft_gmp_print(octx, "0x%zx [invalid type]", expr->value);
}
const struct datatype invalid_type = {
@@ -313,14 +313,14 @@ const struct datatype bitmask_type = {
.type = TYPE_BITMASK,
.name = "bitmask",
.desc = "bitmask",
- .basefmt = "0x%Zx",
+ .basefmt = "0x%zx",
.basetype = &integer_type,
};
static void integer_type_print(const struct expr *expr, struct output_ctx *octx)
{
const struct datatype *dtype = expr->dtype;
- const char *fmt = "%Zu";
+ const char *fmt = "%zu";
do {
if (dtype->basefmt != NULL) {
@@ -749,7 +749,7 @@ const struct datatype mark_type = {
.size = 4 * BITS_PER_BYTE,
.byteorder = BYTEORDER_HOST_ENDIAN,
.basetype = &integer_type,
- .basefmt = "0x%.8Zx",
+ .basefmt = "0x%.8zx",
.print = mark_type_print,
.parse = mark_type_parse,
.flags = DTYPE_F_PREFIX,
--
2.11.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2017-10-08 20:32 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-08 20:30 [PATCH] datatype: Change "%Zx" to "%zx" and "%Zu" to "%zu" Harsha Sharma
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).