diff options
author | Stefan Kost <ensonic@users.sourceforge.net> | 2008-01-27 16:12:45 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2008-01-27 16:12:45 +0000 |
commit | b89495a8c25a27e810c9afe26665aaa91585cbb0 (patch) | |
tree | be774c0f009e6f9748b809d70ee8706e32d449f9 | |
parent | 7fa405c9c92ba15c9074e8a50b05d2e65acad8c3 (diff) | |
download | gst-plugins-bad-b89495a8c25a27e810c9afe26665aaa91585cbb0.tar.gz gst-plugins-bad-b89495a8c25a27e810c9afe26665aaa91585cbb0.tar.bz2 gst-plugins-bad-b89495a8c25a27e810c9afe26665aaa91585cbb0.zip |
tests/icles/metadata_editor.c: Printf format fix.
Original commit message from CVS:
* tests/icles/metadata_editor.c:
Printf format fix.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | tests/icles/metadata_editor.c | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2008-01-27 Stefan Kost <ensonic@users.sf.net> + + * tests/icles/metadata_editor.c: + Printf format fix. + 2008-01-27 Sebastian Dröge <slomo@circular-chaos.org> * ext/soundtouch/gstpitch.cc: diff --git a/tests/icles/metadata_editor.c b/tests/icles/metadata_editor.c index 7b318761..e39720df 100644 --- a/tests/icles/metadata_editor.c +++ b/tests/icles/metadata_editor.c @@ -199,7 +199,8 @@ change_tag_list (GstTagList ** list, const gchar * tag, const gchar * value) } break; default: - fprintf (stderr, "This app still doesn't handle type (%s)(%ld)\n", + fprintf (stderr, + "This app still doesn't handle type (%s)(%" G_GSIZE_FORMAT ")\n", g_type_name (type), type); break; } |