mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
structure: fix a FIXME
This commit is contained in:
parent
589499c07e
commit
04323a0bb9
1 changed files with 1 additions and 2 deletions
|
@ -165,8 +165,7 @@ gst_structure_validate_name (const gchar * name)
|
|||
|
||||
g_return_val_if_fail (name != NULL, FALSE);
|
||||
|
||||
/* FIXME 0.11: use g_ascii_isalpha() */
|
||||
if (G_UNLIKELY (!g_ascii_isalnum (*name))) {
|
||||
if (G_UNLIKELY (!g_ascii_isalpha (*name))) {
|
||||
GST_WARNING ("Invalid character '%c' at offset 0 in structure name: %s",
|
||||
*name, name);
|
||||
return FALSE;
|
||||
|
|
Loading…
Reference in a new issue