a37a080307
to avoid a known bug.) - Fix build with clang for vdr and plugins, and also fix a few bugs it uncovered. - Bump PORTREVISION for all plugins.
11 lines
444 B
C
11 lines
444 B
C
--- a/scanner.c
|
|
+++ b/scanner.c
|
|
@@ -633,7 +633,7 @@ void cScanner::Action(void) {
|
|
else
|
|
continue;
|
|
cCondWait::SleepMs(2000);
|
|
- vbiSupport = vcap.capabilities & (V4L2_CAP_VBI_CAPTURE || V4L2_CAP_SLICED_VBI_CAPTURE);
|
|
+ vbiSupport = vcap.capabilities & (V4L2_CAP_VBI_CAPTURE | V4L2_CAP_SLICED_VBI_CAPTURE);
|
|
if (vbiSupport)
|
|
dlog(1, "device can capture vbi");
|
|
}
|