Skip to content

Commit

Permalink
fix warning C4805: '==': unsafe mix of type 'const unsigned int' and …
Browse files Browse the repository at this point in the history
…type 'const bool' in operation
  • Loading branch information
jpihl committed Oct 23, 2017
1 parent 0ab3152 commit bb4a6b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/src/test_pes.cpp
Expand Up @@ -66,7 +66,7 @@ TEST(test_pes, pes_dump)
EXPECT_EQ(1U, pes->priority());
EXPECT_TRUE(pes->data_alignment_indicator());
EXPECT_FALSE(pes->copyright());
EXPECT_EQ(0U, pes->original_or_copy());
EXPECT_FALSE(pes->original_or_copy());
EXPECT_FALSE(pes->has_es_rate());
EXPECT_FALSE(pes->has_dsm_trick_mode());
EXPECT_FALSE(pes->has_additional_copy_info());
Expand Down

0 comments on commit bb4a6b9

Please sign in to comment.