Skip to content

Commit

Permalink
One-liner from Chris Delis to replace "and" with "&&"
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.mythtv.org/svn/trunk@2939 7dbf422c-18fa-0310-86e9-fd20926502f2
  • Loading branch information
Matt Zimmerman committed Jan 19, 2004
1 parent fdff582 commit 040e4b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/programs/mythtranscode/main.cpp
Expand Up @@ -208,7 +208,7 @@ int main(int argc, char *argv[])
cerr << "Can't specify --database or --buildindex with --infile\n";
return -1;
}
if (use_db and build_index)
if (use_db && build_index)
{
cerr << "Can't specify both --database and --buildindex\n";
return -1;
Expand Down

0 comments on commit 040e4b9

Please sign in to comment.