From be3745cb925f9d9004c7dcba6b0e160a879a2807 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Cerveau?= Date: Fri, 8 May 2020 11:03:52 +0200 Subject: [PATCH] video-hdr: fix typo fix typo in video_hdr_ascii_string_to_unsigned method name. Part-of: --- gst-libs/gst/video/video-hdr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst-libs/gst/video/video-hdr.c b/gst-libs/gst/video/video-hdr.c index a5168d4c70..32645959b6 100644 --- a/gst-libs/gst/video/video-hdr.c +++ b/gst-libs/gst/video/video-hdr.c @@ -42,9 +42,9 @@ /* g_ascii_string_to_unsigned is available since 2.54. Get rid of this wrapper * when we bump the version in 1.18 */ #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 -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) { gchar *endptr = NULL;