summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Gmeiner <christian.gmeiner@gmail.com>2010-04-16 22:17:43 +0200
committerChristian Gmeiner <christian.gmeiner@gmail.com>2010-04-16 22:17:43 +0200
commitd558dffe36b57614ee161bc688a4438b68b4a352 (patch)
treed7eca7574de619124a627440e50e75d13ec731dc
parente1114091b041a9f79328a38acecd4dd9945949c0 (diff)
downloadvdr-plugin-dxr3-d558dffe36b57614ee161bc688a4438b68b4a352.tar.gz
vdr-plugin-dxr3-d558dffe36b57614ee161bc688a4438b68b4a352.tar.bz2
fix: Invalid number of character (() when these macros are defined: 'EM8300_IOCTL_SET_WSS'
thanks to cppcheck, my friend
-rw-r--r--dxr3device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dxr3device.c b/dxr3device.c
index 867a3d0..528b8ff 100644
--- a/dxr3device.c
+++ b/dxr3device.c
@@ -331,7 +331,7 @@ void cDxr3Device::SetVideoFormat(bool VideoFormat16_9)
wssmode = EM8300_WSS_OFF;
}
- CHECK(ioctl(fdControl, EM8300_IOCTL_SET_WSS, &wssmode);
+ CHECK(ioctl(fdControl, EM8300_IOCTL_SET_WSS, &wssmode));
}
#endif
} else {