Change param signage to fix compiler warning

This commit is contained in:
Andy2 2010-10-11 06:20:30 -07:00
parent 56cd161d8b
commit e637a64d96
2 changed files with 2 additions and 2 deletions

View file

@ -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 ) {

View file

@ -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 );