mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-11-16 07:48:07 +01:00
add const to match new signature
This commit is contained in:
parent
dcb5783924
commit
1b40b1956e
1 changed files with 2 additions and 2 deletions
|
@ -116,7 +116,7 @@ static Boolean mainViewHandleEvent( EventPtr event );
|
|||
|
||||
static UInt16 romVersion( void );
|
||||
static Boolean handleHintRequest( PalmAppGlobals* globals );
|
||||
static XP_S16 palm_send( XP_U8* buf, XP_U16 len, CommsAddrRec* addr,
|
||||
static XP_S16 palm_send( XP_U8* buf, XP_U16 len, const CommsAddrRec* addr,
|
||||
void* closure );
|
||||
static void palm_send_on_close( XWStreamCtxt* stream, void* closure );
|
||||
|
||||
|
@ -3458,7 +3458,7 @@ palm_send_on_close( XWStreamCtxt* stream, void* closure )
|
|||
} /* palm_send_on_close */
|
||||
|
||||
static XP_S16
|
||||
palm_send( XP_U8* buf, XP_U16 len, CommsAddrRec* addr, void* closure )
|
||||
palm_send( XP_U8* buf, XP_U16 len, const CommsAddrRec* addr, void* closure )
|
||||
{
|
||||
PalmAppGlobals* globals = (PalmAppGlobals*)closure;
|
||||
|
||||
|
|
Loading…
Reference in a new issue