mirror of
https://git.proxmox.com/git/mirror_corosync
synced 2025-07-27 05:17:35 +00:00
Fix missing prototypes in totempg.c.
git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@1821 fd59a12c-fef9-0310-b244-a6a79926bd2f
This commit is contained in:
parent
f87bf5d029
commit
ce9768ffc5
@ -170,6 +170,11 @@ struct assembly {
|
||||
struct list_head list;
|
||||
};
|
||||
|
||||
static void assembly_deref (struct assembly *assembly);
|
||||
|
||||
static int callback_token_received_fn (enum totem_callback_token_type type,
|
||||
void *data);
|
||||
|
||||
enum throw_away_mode_t {
|
||||
THROW_AWAY_INACTIVE,
|
||||
THROW_AWAY_ACTIVE
|
||||
@ -291,7 +296,7 @@ static struct assembly *assembly_ref (unsigned int nodeid)
|
||||
return (assembly);
|
||||
}
|
||||
|
||||
void assembly_deref (struct assembly *assembly)
|
||||
static void assembly_deref (struct assembly *assembly)
|
||||
{
|
||||
list_del (&assembly->list);
|
||||
list_add (&assembly->list, &assembly_list_free);
|
||||
|
Loading…
Reference in New Issue
Block a user