diff options
| author | Renato Westphal <renatowestphal@gmail.com> | 2016-08-26 20:46:24 -0300 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetwroks.com> | 2016-08-26 20:07:18 -0400 |
| commit | ea8b7c71a7d5fd7f49cd4ffe60b065dd2058b45d (patch) | |
| tree | d74138f39e9acaf14bb78a76a94309aa1ecc1423 /pimd/pim_cmd.c | |
| parent | 4e851f1fa711946a7c8cea17ef41df76336881a9 (diff) | |
build/solaris: fix one error and a few warnings
Signed-off-by: Renato Westphal <renato@openbsd.org>
Diffstat (limited to 'pimd/pim_cmd.c')
| -rw-r--r-- | pimd/pim_cmd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pimd/pim_cmd.c b/pimd/pim_cmd.c index 54ed11da81..6cfed0f2c6 100644 --- a/pimd/pim_cmd.c +++ b/pimd/pim_cmd.c @@ -2087,10 +2087,10 @@ static void show_multicast_interfaces(struct vty *vty) inet_ntoa(ifaddr), ifp->ifindex, pim_ifp->mroute_vif_index, - vreq.icount, - vreq.ocount, - vreq.ibytes, - vreq.obytes, + (unsigned long) vreq.icount, + (unsigned long) vreq.ocount, + (unsigned long) vreq.ibytes, + (unsigned long) vreq.obytes, VTY_NEWLINE); } } |
