From 80a4d36522c13f367405a8c0e70543305d23da0f Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Wed, 13 Nov 2024 15:05:12 -0500 Subject: [PATCH] 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: --- .../gst-plugins-base/gst-libs/gst/video/video-info-dma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-plugins-base/gst-libs/gst/video/video-info-dma.c b/subprojects/gst-plugins-base/gst-libs/gst/video/video-info-dma.c index 475a118b98..6a62496327 100644 --- a/subprojects/gst-plugins-base/gst-libs/gst/video/video-info-dma.c +++ b/subprojects/gst-plugins-base/gst-libs/gst/video/video-info-dma.c @@ -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