From 7dfd19a7a295fd5343338e0146791f6aeea29c16 Mon Sep 17 00:00:00 2001 From: Eric House Date: Wed, 10 Jul 2013 23:14:24 -0700 Subject: [PATCH] name change --- xwords4/linux/gtkmain.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xwords4/linux/gtkmain.c b/xwords4/linux/gtkmain.c index 4c57fc330..44e11c469 100644 --- a/xwords4/linux/gtkmain.c +++ b/xwords4/linux/gtkmain.c @@ -58,7 +58,7 @@ gameIsOpen( GtkAppGlobals* apg, sqlite3_int64 rowid ) } static GtkGameGlobals* -findGame( const GtkAppGlobals* apg, XP_U32 clientToken ) +findOpenGame( const GtkAppGlobals* apg, XP_U32 clientToken ) { GtkGameGlobals* result = NULL; GSList* iter; @@ -446,7 +446,7 @@ gtkGotBuf( void* closure, const XP_U8* buf, XP_U16 len ) buf += sizeof(gameToken); len -= sizeof(gameToken); - GtkGameGlobals* globals = findGame( apg, gameToken ); + GtkGameGlobals* globals = findOpenGame( apg, gameToken ); if ( !!globals ) { gameGotBuf( &globals->cGlobals, XP_TRUE, buf, len ); } else {