summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohns <johns98@gmx.net>2012-01-07 03:13:33 +0100
committerJohns <johns98@gmx.net>2012-01-07 03:13:33 +0100
commitd6e2d0450574c5b305a8faeb808e825ec7fd0fff (patch)
treea86b6d0ea1a4b1972e7647d4c57deb178349c51d
parent45a34a33811123eaf8f3d35f246f79c9219a30a6 (diff)
downloadvdr-plugin-softhddevice-d6e2d0450574c5b305a8faeb808e825ec7fd0fff.tar.gz
vdr-plugin-softhddevice-d6e2d0450574c5b305a8faeb808e825ec7fd0fff.tar.bz2
Fix compiler error with -DDEBUG.
-rw-r--r--video.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video.c b/video.c
index 4391031..5d0e1e2 100644
--- a/video.c
+++ b/video.c
@@ -769,7 +769,7 @@ static int AutoCropIsBlackLineY(const uint8_t * data, int length, int stride)
const uint64_t *p;
#ifdef DEBUG
- if (data & 0x7 || length & 0x7 || stride & 0x7) {
+ if ((size_t) data & 0x7 || length & 0x7 || stride & 0x7) {
abort();
}
#endif