mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
Change param signage to fix compiler warning
This commit is contained in:
parent
56cd161d8b
commit
e637a64d96
2 changed files with 2 additions and 2 deletions
|
@ -749,7 +749,7 @@ comms_setAddr( CommsCtxt* comms, const CommsAddrRec* addr )
|
|||
|
||||
#ifdef XWFEATURE_RELAY
|
||||
XP_Bool
|
||||
comms_getRelayID( const CommsCtxt* comms, XP_U8* buf, XP_U16* lenp )
|
||||
comms_getRelayID( const CommsCtxt* comms, XP_UCHAR* buf, XP_U16* lenp )
|
||||
{
|
||||
XP_Bool success = comms->r.connName[0] != 0;
|
||||
if ( success ) {
|
||||
|
|
|
@ -165,7 +165,7 @@ void comms_getAddr( const CommsCtxt* comms, CommsAddrRec* addr );
|
|||
void comms_setAddr( CommsCtxt* comms, const CommsAddrRec* addr );
|
||||
|
||||
#ifdef XWFEATURE_RELAY
|
||||
XP_Bool comms_getRelayID( const CommsCtxt* comms, XP_U8* buf, XP_U16* len );
|
||||
XP_Bool comms_getRelayID( const CommsCtxt* comms, XP_UCHAR* buf, XP_U16* len );
|
||||
#endif
|
||||
|
||||
CommsConnType comms_getConType( const CommsCtxt* comms );
|
||||
|
|
Loading…
Reference in a new issue