diff options
author | Lou Berger <lberger@labn.net> | 2018-03-28 16:30:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-28 16:30:54 +0200 |
commit | 615e608d76bd3e1acf1769c914142210ac88e3f7 (patch) | |
tree | 1159398cc86aa18901a73480303fb52e09b1f9cc /zebra/zebra_rnh.c | |
parent | Merge pull request #1928 from pguibert6WIND/flowspec_get_vrf_from_rt (diff) | |
parent | *: use C99 standard fixed-width integer types (diff) | |
download | frr-615e608d76bd3e1acf1769c914142210ac88e3f7.tar.xz frr-615e608d76bd3e1acf1769c914142210ac88e3f7.zip |
Merge pull request #1854 from qlyoung/integer-standards-compliance
*: use C99 standard fixed-width integer types
Diffstat (limited to 'zebra/zebra_rnh.c')
-rw-r--r-- | zebra/zebra_rnh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_rnh.c b/zebra/zebra_rnh.c index 48f9f4f36..65df4e15a 100644 --- a/zebra/zebra_rnh.c +++ b/zebra/zebra_rnh.c @@ -985,7 +985,7 @@ static int send_client(struct rnh *rnh, struct zserv *client, rnh_type_t type, struct stream *s; struct route_entry *re; unsigned long nump; - u_char num; + uint8_t num; struct nexthop *nh; struct route_node *rn; int cmd = (type == RNH_IMPORT_CHECK_TYPE) ? ZEBRA_IMPORT_CHECK_UPDATE |