mirror of
https://projects.vdr-developer.org/git/vdr-plugin-softhddevice.git
synced 2023-10-10 19:16:51 +02:00
Fix compiler error with -DDEBUG.
This commit is contained in:
parent
45a34a3381
commit
d6e2d04505
2
video.c
2
video.c
@ -769,7 +769,7 @@ static int AutoCropIsBlackLineY(const uint8_t * data, int length, int stride)
|
|||||||
const uint64_t *p;
|
const uint64_t *p;
|
||||||
|
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
if (data & 0x7 || length & 0x7 || stride & 0x7) {
|
if ((size_t) data & 0x7 || length & 0x7 || stride & 0x7) {
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user