From ba701d59184e5ae42a2c6497a3feab26bc665b55 Mon Sep 17 00:00:00 2001 From: Vineeth TM Date: Mon, 15 Feb 2016 10:01:54 +0900 Subject: tests: simple-encoder: fix build error argument mismatch of gsize with 'long unsigned int' https://bugzilla.gnome.org/show_bug.cgi?id=762055 --- tests/simple-encoder.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/simple-encoder.c b/tests/simple-encoder.c index b424d692..b827604f 100644 --- a/tests/simple-encoder.c +++ b/tests/simple-encoder.c @@ -442,7 +442,8 @@ app_run (App * app) app->read_frames++; id = gst_vaapi_surface_get_id (surface); - g_debug ("input frame %d, surface id = %lu", app->read_frames, id); + g_debug ("input frame %d, surface id = %" G_GSIZE_FORMAT, app->read_frames, + id); gst_vaapi_surface_proxy_unref (proxy); } -- cgit v1.2.1