mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
tag: Fix printf format string
Use %s for strings, not %d.
This commit is contained in:
parent
153b21fc85
commit
dbdfb71673
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ gst_tag_image_orientation_to_exif_value (const gchar * str)
|
|||
return 8;
|
||||
|
||||
end:
|
||||
GST_WARNING ("Invalid image orientation tag: %d", str);
|
||||
GST_WARNING ("Invalid image orientation tag: %s", str);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue