mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
gst-launch: don't use G_GUINT32_FORMAT in translatable string
xgettext doesn't handle this very well. Fixes #583419.
This commit is contained in:
parent
25b1849b80
commit
3a8aba7e92
1 changed files with 2 additions and 4 deletions
|
@ -418,10 +418,8 @@ event_loop (GstElement * pipeline, gboolean blocking, GstState target_state)
|
|||
GST_MESSAGE_SRC (message) ?
|
||||
gst_object_get_path_string (GST_MESSAGE_SRC (message)) : NULL;
|
||||
|
||||
g_print (_("Got Message #%" G_GUINT32_FORMAT
|
||||
" from object \"%s\" (%s): "), seqnum,
|
||||
GST_STR_NULL (src_name),
|
||||
gst_message_type_get_name (GST_MESSAGE_TYPE (message)));
|
||||
g_print (_("Got Message #%u from object \"%s\" (%s): "), (guint) seqnum,
|
||||
GST_STR_NULL (src_name), GST_MESSAGE_TYPE_NAME (message));
|
||||
|
||||
g_free (src_name);
|
||||
|
||||
|
|
Loading…
Reference in a new issue