mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
Replaced incorrect C comparison construct.
This commit is contained in:
parent
304f106a07
commit
fd3d572190
@ -740,7 +740,7 @@ int WINAPI WTDataGet(HCTX hCtx, UINT wBegin, UINT wEnd,
|
||||
context->PacketQueue[end].pkSerialNumber != wEnd)
|
||||
end++;
|
||||
|
||||
if (bgn == end == context->PacketsQueued)
|
||||
if ((bgn == end) && (end == context->PacketsQueued))
|
||||
{
|
||||
LeaveCriticalSection(&csTablet);
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user