Skip to content

Commit

Permalink
Remove extra parentheses (clang++).
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-kristjansson committed Dec 10, 2012
1 parent 2075540 commit 99babb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/videoout_xv.cpp
Expand Up @@ -576,7 +576,7 @@ static bool has_format(XvImageFormatValues *formats, int format_cnt, int id)
{
for (int i = 0; i < format_cnt; i++)
{
if ((formats[i].id == id))
if (formats[i].id == id)
return true;
}

Expand Down

0 comments on commit 99babb5

Please sign in to comment.