diff options
| author | Ingo Molnar <mingo@elte.hu> | 2008-07-31 18:43:41 +0200 | 
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2008-07-31 18:43:41 +0200 | 
| commit | 85e9ca333d03fbd56b9e123c8456f0d98e20faad (patch) | |
| tree | 7bb15ada5f536950efa23ad60ea9eea60380ca1c /net/tipc/cluster.c | |
| parent | a300bec952127d9a15e666b391bb35c9aecb3002 (diff) | |
| parent | 6e86841d05f371b5b9b86ce76c02aaee83352298 (diff) | |
Merge branch 'linus' into timers/hpet
Diffstat (limited to 'net/tipc/cluster.c')
| -rw-r--r-- | net/tipc/cluster.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/net/tipc/cluster.c b/net/tipc/cluster.c index 4bb3404f610..46ee6c58532 100644 --- a/net/tipc/cluster.c +++ b/net/tipc/cluster.c @@ -238,7 +238,7 @@ static struct sk_buff *tipc_cltr_prepare_routing_msg(u32 data_size, u32 dest)  	if (buf) {  		msg = buf_msg(buf);  		memset((char *)msg, 0, size); -		msg_init(msg, ROUTE_DISTRIBUTOR, 0, TIPC_OK, INT_H_SIZE, dest); +		msg_init(msg, ROUTE_DISTRIBUTOR, 0, INT_H_SIZE, dest);  	}  	return buf;  } @@ -571,6 +571,6 @@ exit:  int tipc_cltr_init(void)  {  	tipc_highest_allowed_slave = LOWEST_SLAVE + tipc_max_slaves; -	return tipc_cltr_create(tipc_own_addr) ? TIPC_OK : -ENOMEM; +	return tipc_cltr_create(tipc_own_addr) ? 0 : -ENOMEM;  } | 
