mirror of
https://github.com/osmarks/ngircd.git
synced 2024-12-13 10:20:28 +00:00
fix compile /w gcc 2.95 (reported by Tassilo Schweyer)
This commit is contained in:
parent
f1486e6a53
commit
5675be4cd9
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
#include "portab.h"
|
#include "portab.h"
|
||||||
|
|
||||||
static char UNUSED id[] = "$Id: channel.c,v 1.62 2006/12/29 14:09:50 fw Exp $";
|
static char UNUSED id[] = "$Id: channel.c,v 1.63 2007/06/11 20:06:46 fw Exp $";
|
||||||
|
|
||||||
#include "imp.h"
|
#include "imp.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
@ -602,7 +602,7 @@ Channel_IsMemberOf( CHANNEL *Chan, CLIENT *Client )
|
|||||||
|
|
||||||
assert( Chan != NULL );
|
assert( Chan != NULL );
|
||||||
assert( Client != NULL );
|
assert( Client != NULL );
|
||||||
return Get_Cl2Chan(Chan, Client);
|
return Get_Cl2Chan(Chan, Client) != NULL;
|
||||||
} /* Channel_IsMemberOf */
|
} /* Channel_IsMemberOf */
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user