diff options
author | F. Aragon <paco@voltanet.io> | 2018-09-20 17:36:21 +0200 |
---|---|---|
committer | F. Aragon <paco@voltanet.io> | 2018-09-20 17:36:21 +0200 |
commit | 1768243e537f32f2c43c58dd4665605b8001469e (patch) | |
tree | 728e95e290102eba9ab5c9524635aee2ed911689 /lib/vrf.h | |
parent | Merge pull request #3017 from pacovn/devbuild_Wshadow_flag (diff) | |
download | frr-1768243e537f32f2c43c58dd4665605b8001469e.tar.xz frr-1768243e537f32f2c43c58dd4665605b8001469e.zip |
lib: redundant parentheses (SA)
Redundant parentheses surrounding declarator removed.
Can be detected via static analysis with e.g.
./configure CFLAGS=-Wredundant-parens CC=clang
Signed-off-by: F. Aragon <paco@voltanet.io>
Diffstat (limited to 'lib/vrf.h')
-rw-r--r-- | lib/vrf.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -201,7 +201,7 @@ extern int vrf_bitmap_check(vrf_bitmap_t, vrf_id_t); */ extern void vrf_init(int (*create)(struct vrf *vrf), int (*enable)(struct vrf *vrf), int (*disable)(struct vrf *vrf), int (*delete)(struct vrf *vrf), - int ((*update)(struct vrf *vrf))); + int (*update)(struct vrf *vrf)); /* * Call vrf_terminate when the protocol is being shutdown |