From ba36bf6a388dfe68143cbde2d991d5a5cab347bd Mon Sep 17 00:00:00 2001 From: AASanchezA Date: Tue, 8 Feb 2022 15:04:29 +0100 Subject: [PATCH] bugfix: fix linux compilation for method g_utf8_to_ucs4 for gstidsueyesrc --- sys/idsueye/gstidsueyesrc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/idsueye/gstidsueyesrc.c b/sys/idsueye/gstidsueyesrc.c index 90776ff..f8716f0 100644 --- a/sys/idsueye/gstidsueyesrc.c +++ b/sys/idsueye/gstidsueyesrc.c @@ -446,7 +446,7 @@ char_to_ids_unicode (const char *str) void * 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