video: dma drm: Fix modifier definition on 32bit

The modifiers are 64bit, add missing ULL suffix so that the compiler does
not complain on 32bit platforms.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7849>
This commit is contained in:
Nicolas Dufresne 2024-11-13 15:05:12 -05:00 committed by GStreamer Marge Bot
parent afd8bf807d
commit 80a4d36522

View file

@ -149,7 +149,7 @@
* list, or to initialize a variable with an invalid modifier. It might also be
* used to report an error back to userspace for certain APIs.
*/
#define DRM_FORMAT_MOD_INVALID 0xffffffffffffff
#define DRM_FORMAT_MOD_INVALID 0xffffffffffffffULL
#ifndef GST_DISABLE_GST_DEBUG