diff options
| author | Quentin Young <qlyoung@cumulusnetworks.com> | 2019-02-28 21:41:21 +0000 |
|---|---|---|
| committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2019-05-17 00:27:08 +0000 |
| commit | 323cc42ac190c2b087a4b19cea6e9bd580c0dff7 (patch) | |
| tree | 6007c59aa78072eef6b55ff95b4e2245c79a1192 /vrrpd/vrrp_vty.c | |
| parent | 29ef66fa19f15dcc57db28aba4b048e50bd9da39 (diff) | |
vrrpd: fix unsigned - signed cmp
For some reason this warning only shows up on armel
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'vrrpd/vrrp_vty.c')
| -rw-r--r-- | vrrpd/vrrp_vty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vrrpd/vrrp_vty.c b/vrrpd/vrrp_vty.c index 4c474489f4..3f6918539c 100644 --- a/vrrpd/vrrp_vty.c +++ b/vrrpd/vrrp_vty.c @@ -555,7 +555,7 @@ DEFPY(vrrp_vrid_show, for (ALL_LIST_ELEMENTS_RO(ll, ln, vr)) { if (ifn && !strmatch(ifn, vr->ifp->name)) continue; - if (vrid && vrid != vr->vrid) + if ((uint8_t) vrid && vrid != vr->vrid) continue; if (!json) |
