summaryrefslogtreecommitdiffstats
path: root/bgpd/bgp_table.c
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2009-02-09 10:14:16 -0800
committerStephen Hemminger <stephen.hemminger@vyatta.com>2009-02-09 11:24:21 -0800
commit615f5ca44b5f36d0db4ef210131731d3c61b7701 (patch)
treef241067e4f592c3425d6cb48015d3a300e1223bc /bgpd/bgp_table.c
parentb8192765a320f389e09bf7261e8902958ad21584 (diff)
downloadquagga-615f5ca44b5f36d0db4ef210131731d3c61b7701.tar.bz2
quagga-615f5ca44b5f36d0db4ef210131731d3c61b7701.tar.xz
bgp: change () to (void)
Use Ansi-C prototypes rather than old K&R method of declaring function without arguments
Diffstat (limited to 'bgpd/bgp_table.c')
-rw-r--r--bgpd/bgp_table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_table.c b/bgpd/bgp_table.c
index c2120252..63f08813 100644
--- a/bgpd/bgp_table.c
+++ b/bgpd/bgp_table.c
@@ -54,7 +54,7 @@ bgp_table_finish (struct bgp_table **rt)
}
static struct bgp_node *
-bgp_node_create ()
+bgp_node_create (void)
{
struct bgp_node *rn;