mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-18 22:26:30 +01:00
fix OFFSET_OF ptr size to quiet compiler
This commit is contained in:
parent
45ad3499c5
commit
b9d0469cfe
1 changed files with 1 additions and 1 deletions
|
@ -240,7 +240,7 @@ typedef struct _PlayerDicts {
|
|||
# define DEBUG_ASSIGN(a,b)
|
||||
#endif
|
||||
|
||||
#define OFFSET_OF(typ,var) ((XP_U16)&(((typ*) 0)->var))
|
||||
#define OFFSET_OF(typ,var) ((XP_U32)&(((typ*) 0)->var))
|
||||
|
||||
#ifndef RELAY_NAME_DEFAULT
|
||||
# define RELAY_NAME_DEFAULT "eehouse.org"
|
||||
|
|
Loading…
Reference in a new issue