mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
registrychunks: Fix a printf compile warning on 64-bit platforms
This commit is contained in:
parent
6042793c26
commit
94bb0ee718
1 changed files with 1 additions and 1 deletions
|
@ -810,6 +810,6 @@ _priv_gst_registry_chunks_load_plugin (GstRegistry * registry, gchar ** in,
|
||||||
|
|
||||||
/* Errors */
|
/* Errors */
|
||||||
fail:
|
fail:
|
||||||
GST_INFO ("Reading plugin failed after %d bytes", end - start);
|
GST_INFO ("Reading plugin failed after %u bytes", (guint) (end - start));
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue