diff options
author | Vineeth TM <vineeth.tm@samsung.com> | 2016-02-15 10:01:54 +0900 |
---|---|---|
committer | Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com> | 2016-02-15 18:20:44 +0100 |
commit | ba701d59184e5ae42a2c6497a3feab26bc665b55 (patch) | |
tree | 37fdbfcecf5f38e7bbdd59d988027fadfda6d2f3 /tests | |
parent | 1f6d29641d25d7c0d4de499ea3fc3c694cf0af7c (diff) |
tests: simple-encoder: fix build error
argument mismatch of gsize with 'long unsigned int'
https://bugzilla.gnome.org/show_bug.cgi?id=762055
Diffstat (limited to 'tests')
-rw-r--r-- | tests/simple-encoder.c | 3 |
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); } |