libfreerdp-core: fix warning about | operator.

This commit is contained in:
Brad Hards 2011-07-27 16:41:00 +10:00
parent 7e79e43ddc
commit 8761b1d9a8
1 changed files with 1 additions and 1 deletions

View File

@ -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;