tag: Fix printf format string

Use %s for strings, not %d.
This commit is contained in:
Thiago Santos 2010-06-24 08:41:42 -03:00
parent 153b21fc85
commit dbdfb71673

View file

@ -45,7 +45,7 @@ gst_tag_image_orientation_to_exif_value (const gchar * str)
return 8; return 8;
end: end:
GST_WARNING ("Invalid image orientation tag: %d", str); GST_WARNING ("Invalid image orientation tag: %s", str);
return -1; return -1;
} }