[mythtv] [PATCH] mythtranscode compilation error

Chris Delis cedelis at uillinois.edu
Sun Jan 18 23:44:55 EST 2004


Hello,

Seems like a typo in main.cpp

This one-liner fixed things for me.

--Chris
-------------- next part --------------
diff -u -r programs/mythtranscode/main.cpp programs2/mythtranscode/main.cpp
--- programs/mythtranscode/main.cpp	Sun Jan 18 22:38:19 2004
+++ programs2/mythtranscode/main.cpp	Sun Jan 18 22:40:26 2004
@@ -208,7 +208,7 @@
          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;


More information about the mythtv-dev mailing list