diff options
author | paco <paco@voltanet.io> | 2018-06-20 17:15:37 +0200 |
---|---|---|
committer | paco <paco@voltanet.io> | 2018-06-20 22:25:28 +0200 |
commit | a2b6e694b17303f3faf2db29254b5ea4a4ae14b1 (patch) | |
tree | ce3de528becaedc5611f3b17235e915a3f5fef64 /isisd/isis_te.c | |
parent | Merge pull request #2459 from pacovn/Coverity_1469898_Uninitialized_scalar_va... (diff) | |
download | frr-a2b6e694b17303f3faf2db29254b5ea4a4ae14b1.tar.xz frr-a2b6e694b17303f3faf2db29254b5ea4a4ae14b1.zip |
bgpd isisd ldpd lib ospfd pimd: redundancy (infer)
Signed-off-by: F. Aragon <paco@voltanet.io>
Diffstat (limited to 'isisd/isis_te.c')
-rw-r--r-- | isisd/isis_te.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isisd/isis_te.c b/isisd/isis_te.c index 6834f52a8..8e53df3b6 100644 --- a/isisd/isis_te.c +++ b/isisd/isis_te.c @@ -884,7 +884,7 @@ static uint8_t print_subtlv_use_bw(struct sbuf *buf, int indent, static uint8_t print_unknown_tlv(struct sbuf *buf, int indent, struct subtlv_header *tlvh) { - int i, rtn = 1; + int i, rtn; uint8_t *v = (uint8_t *)tlvh; if (tlvh->length != 0) { |