diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-02-09 11:24:58 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-02-09 11:24:58 -0800 |
commit | 86a3d4117c6b959bfed2bf4ceb2500e046c44f18 (patch) | |
tree | 9b7d22b5f1f243da871e17a34b972ad183dc70c3 /bgpd/bgp_clist.c | |
parent | 5dccb9ccc022e5f7c7bd1ba2df128dd1733f6076 (diff) | |
parent | 615f5ca44b5f36d0db4ef210131731d3c61b7701 (diff) | |
download | quagga-86a3d4117c6b959bfed2bf4ceb2500e046c44f18.tar.bz2 quagga-86a3d4117c6b959bfed2bf4ceb2500e046c44f18.tar.xz |
Merge branch 'vyatta-update' of /home/shemminger/src/quagga into jenner
Diffstat (limited to 'bgpd/bgp_clist.c')
-rw-r--r-- | bgpd/bgp_clist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bgpd/bgp_clist.c b/bgpd/bgp_clist.c index 6bf3b64a..dcefc29d 100644 --- a/bgpd/bgp_clist.c +++ b/bgpd/bgp_clist.c @@ -49,7 +49,7 @@ community_list_master_lookup (struct community_list_handler *ch, int master) /* Allocate a new community list entry. */ static struct community_entry * -community_entry_new () +community_entry_new (void) { return XCALLOC (MTYPE_COMMUNITY_LIST_ENTRY, sizeof (struct community_entry)); } @@ -86,7 +86,7 @@ community_entry_free (struct community_entry *entry) /* Allocate a new community-list. */ static struct community_list * -community_list_new () +community_list_new (void) { return XCALLOC (MTYPE_COMMUNITY_LIST, sizeof (struct community_list)); } |