mirror of https://github.com/FreeRDP/FreeRDP
libfreerdp-core: fix warning about | operator.
This commit is contained in:
parent
7e79e43ddc
commit
8761b1d9a8
|
@ -90,7 +90,7 @@ boolean ber_read_universal_tag(STREAM* s, uint8 tag, boolean pc)
|
|||
|
||||
stream_read_uint8(s, byte);
|
||||
|
||||
if (byte != (BER_CLASS_UNIV | BER_PC(pc)) | (BER_TAG_MASK & tag))
|
||||
if (byte != (BER_CLASS_UNIV | BER_PC(pc) | (BER_TAG_MASK & tag)))
|
||||
return False;
|
||||
|
||||
return True;
|
||||
|
|
Loading…
Reference in New Issue