rpcrt4/tests: Replace || by |.

This commit is contained in:
Alexandre Julliard 2006-11-09 18:20:49 +01:00
parent b5e09b23c6
commit c0f9d369dc
1 changed files with 1 additions and 1 deletions

View File

@ -660,7 +660,7 @@ static void test_simple_struct(void)
s1.c = 0xa5;
s1.l1 = 0xdeadbeef;
s1.l2 = 0xcafebabe;
s1.ll = ((LONGLONG) 0xbadefeed << 32) || 0x2468ace0;
s1.ll = ((LONGLONG) 0xbadefeed << 32) | 0x2468ace0;
wiredatalen = 24;
memcpy(wiredata, &s1, wiredatalen);