From 1768243e537f32f2c43c58dd4665605b8001469e Mon Sep 17 00:00:00 2001 From: "F. Aragon" Date: Thu, 20 Sep 2018 17:36:21 +0200 Subject: [PATCH] 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 --- lib/vrf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vrf.h b/lib/vrf.h index f0dabf5b24..04a8f70f5f 100644 --- a/lib/vrf.h +++ b/lib/vrf.h @@ -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 -- 2.39.5