summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVineeth TM <vineeth.tm@samsung.com>2016-02-15 10:01:54 +0900
committerVíctor Manuel Jáquez Leal <victorx.jaquez@intel.com>2016-02-15 18:20:44 +0100
commitba701d59184e5ae42a2c6497a3feab26bc665b55 (patch)
tree37fdbfcecf5f38e7bbdd59d988027fadfda6d2f3
parent1f6d29641d25d7c0d4de499ea3fc3c694cf0af7c (diff)
downloadgst-vaapi-ba701d59184e5ae42a2c6497a3feab26bc665b55.tar.gz
tests: simple-encoder: fix build error
argument mismatch of gsize with 'long unsigned int' https://bugzilla.gnome.org/show_bug.cgi?id=762055
-rw-r--r--tests/simple-encoder.c3
1 files changed, 2 insertions, 1 deletions
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);
}