mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-01 06:19:57 +01:00
fix compiler warning
This commit is contained in:
parent
0721f63227
commit
2546a816b4
1 changed files with 1 additions and 1 deletions
|
@ -1086,7 +1086,7 @@ index_from( DictionaryCtxt* dict, array_edge* p_edge )
|
|||
} else if ( dict->nodeSize == 4 ) {
|
||||
array_edge_new* edge = (array_edge_new*)p_edge;
|
||||
result = ((edge->o.highByte << 8) | edge->o.lowByte) & 0x0000FFFF;
|
||||
result |= edge->moreBits << 17;
|
||||
result |= ((XP_U32)edge->moreBits) << 17;
|
||||
if ( (edge->o.bits & LASTBITMASK) != 0 ) {
|
||||
result |= 0x00010000; /* using | instead of + saves 4 bytes */
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue