diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-05-05 23:08:44 +0200 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-05-05 23:15:18 +0200 |
commit | b210b827ded22c93a1389156f77c1b73b7723886 (patch) | |
tree | 5de754974e62b18f02042d9e0ef5d9ad50fab440 /bgpd/rfapi/rfapi_rib.h | |
parent | Merge remote-tracking branch 'origin/stable/3.0' (diff) | |
download | frr-b210b827ded22c93a1389156f77c1b73b7723886.tar.xz frr-b210b827ded22c93a1389156f77c1b73b7723886.zip |
bgpd: use correct type for rfapi thread pointer
Pointer to void always points at the same thing so make it the type of
the thing that it points at
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'bgpd/rfapi/rfapi_rib.h')
-rw-r--r-- | bgpd/rfapi/rfapi_rib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/rfapi/rfapi_rib.h b/bgpd/rfapi/rfapi_rib.h index 74331a28d..43a5d43ff 100644 --- a/bgpd/rfapi/rfapi_rib.h +++ b/bgpd/rfapi/rfapi_rib.h @@ -78,7 +78,7 @@ struct rfapi_info struct bgp_tea_options *tea_options; struct rfapi_un_option *un_options; struct rfapi_vn_option *vn_options; - void *timer; + struct thread *timer; }; /* |