diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-02-09 19:14:16 +0100 |
---|---|---|
committer | Paul Jakma <paul@quagga.net> | 2009-06-12 18:09:03 +0200 |
commit | 66e5cd87194ae6fdd51061a91b4698bc0a652f6b (patch) | |
tree | 659d31f9a7dfb8d9ad9a51f37ff0853054a45399 /bgpd/bgp_fsm.c | |
parent | [cleanup] add const attribute to lib/if.c::if_dump (diff) | |
download | frr-66e5cd87194ae6fdd51061a91b4698bc0a652f6b.tar.xz frr-66e5cd87194ae6fdd51061a91b4698bc0a652f6b.zip |
[cleanup] functions taking no args should be declared with void args
Use Ansi-C prototypes rather than old K&R method of declaring
function without arguments
Diffstat (limited to 'bgpd/bgp_fsm.c')
-rw-r--r-- | bgpd/bgp_fsm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_fsm.c b/bgpd/bgp_fsm.c index 15bd8a6c8..924857310 100644 --- a/bgpd/bgp_fsm.c +++ b/bgpd/bgp_fsm.c @@ -902,7 +902,7 @@ bgp_ignore (struct peer *peer) /* Finite State Machine structure */ struct { - int (*func) (); + int (*func) (struct peer *); int next_state; } FSM [BGP_STATUS_MAX - 1][BGP_EVENTS_MAX - 1] = { |