Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo in gstidsueyesrc.c? #59

Open
huyaoyu opened this issue Jul 3, 2021 · 0 comments
Open

Typo in gstidsueyesrc.c? #59

huyaoyu opened this issue Jul 3, 2021 · 0 comments

Comments

@huyaoyu
Copy link

huyaoyu commented Jul 3, 2021

Failed to compile the plugin for IDS uEye camera on Linux.

It seems the following code contains a typo:

return g_utf8_to_ucs4 (src->config_file, -1, NULL, NULL, NULL);

void *
char_to_ids_unicode (const char *str)
{
  return g_utf8_to_ucs4 (src->config_file, -1, NULL, NULL, NULL);
}

Should be

void *
char_to_ids_unicode (const char *str)
{
  return g_utf8_to_ucs4 (str, -1, NULL, NULL, NULL);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant