diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2008-02-02 23:25:10 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2008-02-02 23:25:10 +0000 |
commit | 0aedb33d149bd930be2b79d9ea3afeff24f9d1ad (patch) | |
tree | e6b668eb6bc0690df72bf5d968a0504d61d7a5d8 /tests | |
parent | 5aa73f078a997f63f8bfec0746ceaa5e3ec9e986 (diff) | |
download | gst-plugins-bad-0aedb33d149bd930be2b79d9ea3afeff24f9d1ad.tar.gz gst-plugins-bad-0aedb33d149bd930be2b79d9ea3afeff24f9d1ad.tar.bz2 gst-plugins-bad-0aedb33d149bd930be2b79d9ea3afeff24f9d1ad.zip |
ext/metadata/gstmetadatademux.c: Demote metadatademux to GST_RANK_NONE for the release, it's not ready to be autoplug...
Original commit message from CVS:
* ext/metadata/gstmetadatademux.c:
Demote metadatademux to GST_RANK_NONE for the release, it's not
ready to be autoplugged yet.
* tests/icles/metadata_editor.c:
Fix printf format warning for GType on ppc32 by removing it,
since it doesn't make sense to print the GType value anyway.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/icles/metadata_editor.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/icles/metadata_editor.c b/tests/icles/metadata_editor.c index 0f8f95d5..d59e4cd3 100644 --- a/tests/icles/metadata_editor.c +++ b/tests/icles/metadata_editor.c @@ -200,9 +200,8 @@ change_tag_list (GstTagList ** list, const gchar * tag, const gchar * value) } break; default: - fprintf (stderr, - "This app still doesn't handle type (%s)(%" G_GSIZE_FORMAT ")\n", - g_type_name (type), type); + g_printerr ("Tags of type '%s' are not supported yet.\n", + g_type_name (type)); break; } } |