Skip to content
Snippets Groups Projects
Commit 31e885ea authored by Jan Niklas Hasse's avatar Jan Niklas Hasse Committed by Ralph Giles
Browse files

Fix warning logical-op-parentheses


Signed-off-by: default avatarRalph Giles <giles@thaumas.net>
parent f370e39e
No related branches found
No related tags found
1 merge request!3Merge outstanding PRs from github
......@@ -60,8 +60,8 @@ static int oc_info_unpack(oc_pack_buf *_opb,th_info *_info){
/*verify we can parse this bitstream version.
We accept earlier minors and all subminors, by spec*/
if(_info->version_major>TH_VERSION_MAJOR||
_info->version_major==TH_VERSION_MAJOR&&
_info->version_minor>TH_VERSION_MINOR){
(_info->version_major==TH_VERSION_MAJOR&&
_info->version_minor>TH_VERSION_MINOR)){
return TH_EVERSION;
}
/*Read the encoded frame description.*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment