mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 23:36:38 +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;
|
return 8;
|
||||||
|
|
||||||
end:
|
end:
|
||||||
GST_WARNING ("Invalid image orientation tag: %d", str);
|
GST_WARNING ("Invalid image orientation tag: %s", str);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue