summaryrefslogtreecommitdiffstats
path: root/sys/ximage
diff options
context:
space:
mode:
Diffstat (limited to 'sys/ximage')
-rw-r--r--sys/ximage/ximageutil.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/ximage/ximageutil.c b/sys/ximage/ximageutil.c
index 8e36bb68..d340ac99 100644
--- a/sys/ximage/ximageutil.c
+++ b/sys/ximage/ximageutil.c
@@ -78,7 +78,8 @@ ximageutil_check_xshm_calls (GstXContext * xcontext)
SHMInfo.shmid = shmget (IPC_PRIVATE, size, IPC_CREAT | 0777);
if (SHMInfo.shmid == -1) {
- GST_WARNING ("could not get shared memory of %d bytes", size);
+ GST_WARNING ("could not get shared memory of %" G_GSIZE_FORMAT " bytes",
+ size);
goto beach;
}