diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-05-15 07:49:10 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-15 07:49:10 -0400 |
| commit | 5704e7109dc562d7d85c9b2a80ad8759cfba56ed (patch) | |
| tree | 47d898e67f0e1dda2c51915299fbb13231d07ba5 /zebra/rib.h | |
| parent | 809241f44214f49e34b99a00eb2f588ee019d2cb (diff) | |
| parent | cd7108ba928588a14250ef3bc8a8a44eb0f2c81d (diff) | |
Merge pull request #6401 from volta-networks/fix_c++_keywords
zebra: avoid using c++ keywords in headers
Diffstat (limited to 'zebra/rib.h')
| -rw-r--r-- | zebra/rib.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/zebra/rib.h b/zebra/rib.h index 0b44550387..a024b6dfaa 100644 --- a/zebra/rib.h +++ b/zebra/rib.h @@ -323,7 +323,8 @@ enum rib_update_event { extern void route_entry_copy_nexthops(struct route_entry *re, struct nexthop *nh); -int route_entry_update_nhe(struct route_entry *re, struct nhg_hash_entry *new); +int route_entry_update_nhe(struct route_entry *re, + struct nhg_hash_entry *new_nhghe); #define route_entry_dump(prefix, src, re) _route_entry_dump(__func__, prefix, src, re) extern void _route_entry_dump(const char *func, union prefixconstptr pp, |
