emix - mixer backend - fix string compare to compare wholes string

This commit is contained in:
Carsten Haitzler 2020-10-04 22:17:02 +01:00
parent f1a15a41db
commit 048a658ff9
1 changed files with 1 additions and 2 deletions

View File

@ -204,8 +204,7 @@ emix_backend_set(const char *backend)
EINA_LIST_FOREACH(ctx->backends_names, l, name)
{
if (!strncmp(name, backend, strlen(name)))
break;
if (!strcmp(name, backend)) break;
i++;
}