bugfix: fix linux compilation for method g_utf8_to_ucs4 for gstidsueyesrc

This commit is contained in:
AASanchezA 2022-02-08 15:04:29 +01:00 committed by joshdoe
parent 1417f0d330
commit ba36bf6a38

View File

@ -446,7 +446,7 @@ char_to_ids_unicode (const char *str)
void * void *
char_to_ids_unicode (const char *str) char_to_ids_unicode (const char *str)
{ {
return g_utf8_to_ucs4 (src->config_file, -1, NULL, NULL, NULL); return g_utf8_to_ucs4 (str, -1, NULL, NULL, NULL);
} }
#endif #endif