diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-06-20 02:44:15 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-06-20 02:44:15 +0200 |
commit | 7096e93875b2deceb6e16cf3120c0adb59611279 (patch) | |
tree | 0cae4a74eb4bcca7cfbaa1b5dfc9333d51350f25 /lib/routemap.c | |
parent | Merge pull request #2459 from pacovn/Coverity_1469898_Uninitialized_scalar_va... (diff) | |
download | frr-7096e93875b2deceb6e16cf3120c0adb59611279.tar.xz frr-7096e93875b2deceb6e16cf3120c0adb59611279.zip |
bgpd, lib, pimd: Remove unused variable.
route_map_mark_updated has a `int del_later` variable
that is passed in but never used. Just remove it.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'lib/routemap.c')
-rw-r--r-- | lib/routemap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/routemap.c b/lib/routemap.c index 892b19dac..4601da759 100644 --- a/lib/routemap.c +++ b/lib/routemap.c @@ -751,7 +751,7 @@ struct route_map *route_map_lookup_by_name(const char *name) return map; } -int route_map_mark_updated(const char *name, int del_later) +int route_map_mark_updated(const char *name) { struct route_map *map; int ret = -1; |