diff options
author | Víctor Manuel Jáquez Leal <vjaquez@igalia.com> | 2020-06-09 21:19:11 +0200 |
---|---|---|
committer | Víctor Manuel Jáquez Leal <vjaquez@igalia.com> | 2020-06-09 21:25:40 +0200 |
commit | 1c5f32b5cd0ba48f12201565f76aa550733e544a (patch) | |
tree | 6b0f4124b8d5b43694a1de4452184ad982082c19 | |
parent | e6e377c720e110792e8d14e76ae610aa285bf6ea (diff) |
libs: context: use correct printing modifier
GstVaapiID is an alias of gsize, thus its modifier is platform
dependant.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-vaapi/-/merge_requests/340>
-rw-r--r-- | gst-libs/gst/vaapi/gstvaapicontext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst-libs/gst/vaapi/gstvaapicontext.c b/gst-libs/gst/vaapi/gstvaapicontext.c index 5d5deb6e..ea6d7632 100644 --- a/gst-libs/gst/vaapi/gstvaapicontext.c +++ b/gst-libs/gst/vaapi/gstvaapicontext.c @@ -486,7 +486,7 @@ gst_vaapi_context_new (GstVaapiDisplay * display, goto error; done: - GST_DEBUG ("context 0x%08lx / config 0x%08x", + GST_DEBUG ("context 0x%08" G_GSIZE_MODIFIER "x / config 0x%08x", GST_VAAPI_CONTEXT_ID (context), context->va_config); return context; |