mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-29 08:34:37 +01:00
add const to match new signature
This commit is contained in:
parent
ee52261a9c
commit
c67c8054b0
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…
Add table
Reference in a new issue