diff options
author | David Lamparter <equinox@diac24.net> | 2020-07-14 12:02:54 +0200 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2020-07-14 12:02:54 +0200 |
commit | 47b13e9bc0de0a7ee53aedb09b6bf33e63e4444c (patch) | |
tree | 463d5ffa2bcfc1b1b9c91194d6e869f1c6e925f0 /isisd/isis_pdu.c | |
parent | *: remove PRI[udx](8|16|32) (diff) | |
download | frr-47b13e9bc0de0a7ee53aedb09b6bf33e63e4444c.tar.xz frr-47b13e9bc0de0a7ee53aedb09b6bf33e63e4444c.zip |
isisd: fix OpenBSD pedantic format warnings
constants are int-typed, so adding something to an uint8_t yields an
int. Nevermind the fact that varargs calling conventions require
upcasting everything smaller than an int to an int anyways...
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'isisd/isis_pdu.c')
-rw-r--r-- | isisd/isis_pdu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isisd/isis_pdu.c b/isisd/isis_pdu.c index 9a1ad38f8..72548e042 100644 --- a/isisd/isis_pdu.c +++ b/isisd/isis_pdu.c @@ -876,7 +876,7 @@ static int process_lsp(uint8_t pdu_type, struct isis_circuit *circuit, /* lsp is_type check */ if ((hdr.lsp_bits & IS_LEVEL_1) != IS_LEVEL_1) { zlog_debug( - "ISIS-Upd (%s): LSP %s invalid LSP is type 0x%hhx", + "ISIS-Upd (%s): LSP %s invalid LSP is type 0x%x", circuit->area->area_tag, rawlspid_print(hdr.lsp_id), hdr.lsp_bits & IS_LEVEL_1_AND_2); /* continue as per RFC1122 Be liberal in what you accept, and |