diff options
author | Johns <johns98@gmx.net> | 2012-01-07 03:13:33 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2012-01-07 03:13:33 +0100 |
commit | d6e2d0450574c5b305a8faeb808e825ec7fd0fff (patch) | |
tree | a86b6d0ea1a4b1972e7647d4c57deb178349c51d /video.c | |
parent | 45a34a33811123eaf8f3d35f246f79c9219a30a6 (diff) | |
download | vdr-plugin-softhddevice-d6e2d0450574c5b305a8faeb808e825ec7fd0fff.tar.gz vdr-plugin-softhddevice-d6e2d0450574c5b305a8faeb808e825ec7fd0fff.tar.bz2 |
Fix compiler error with -DDEBUG.
Diffstat (limited to 'video.c')
-rw-r--r-- | video.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |