mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
video-hdr: fix typo
fix typo in video_hdr_ascii_string_to_unsigned method name. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/675>
This commit is contained in:
parent
3843452366
commit
be3745cb92
1 changed files with 2 additions and 2 deletions
|
@ -42,9 +42,9 @@
|
||||||
/* g_ascii_string_to_unsigned is available since 2.54. Get rid of this wrapper
|
/* g_ascii_string_to_unsigned is available since 2.54. Get rid of this wrapper
|
||||||
* when we bump the version in 1.18 */
|
* when we bump the version in 1.18 */
|
||||||
#if !GLIB_CHECK_VERSION(2,54,0)
|
#if !GLIB_CHECK_VERSION(2,54,0)
|
||||||
#define g_ascii_string_to_unsigned vidoe_hdr_ascii_string_to_unsigned
|
#define g_ascii_string_to_unsigned video_hdr_ascii_string_to_unsigned
|
||||||
static gboolean
|
static gboolean
|
||||||
vidoe_hdr_ascii_string_to_unsigned (const gchar * str, guint base, guint64 min,
|
video_hdr_ascii_string_to_unsigned (const gchar * str, guint base, guint64 min,
|
||||||
guint64 max, guint64 * out_num, GError ** error)
|
guint64 max, guint64 * out_num, GError ** error)
|
||||||
{
|
{
|
||||||
gchar *endptr = NULL;
|
gchar *endptr = NULL;
|
||||||
|
|
Loading…
Reference in a new issue