Commit afa5158f authored by Nicolas Dichtel's avatar Nicolas Dichtel Committed by Stephen Hemminger

tc: fix compilation warning on 32bits arch

The warning was:
m_simple.c: In function ‘parse_simple’:
m_simple.c:142:4: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 3 has type ‘size_t’ [-Wformat]

Useful to be able to compile with -Werror.
Signed-off-by: default avatarNicolas Dichtel <nicolas.dichtel@6wind.com>
parent 46679bbb
...@@ -138,7 +138,7 @@ parse_simple(struct action_util *a, int *argc_p, char ***argv_p, int tca_id, ...@@ -138,7 +138,7 @@ parse_simple(struct action_util *a, int *argc_p, char ***argv_p, int tca_id,
} }
if (strlen(simpdata) > (SIMP_MAX_DATA - 1)) { if (strlen(simpdata) > (SIMP_MAX_DATA - 1)) {
fprintf(stderr, "simple: Illegal string len %ld <%s> \n", fprintf(stderr, "simple: Illegal string len %zu <%s> \n",
strlen(simpdata), simpdata); strlen(simpdata), simpdata);
return -1; return -1;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment