use correct string for randr screen fuzzy matching

using the full edid string results in infinite recursion
This commit is contained in:
Mike Blumenkrantz 2017-09-01 13:40:12 -04:00
parent 75a12a9461
commit b492e87851
1 changed files with 1 additions and 1 deletions

View File

@ -751,7 +751,7 @@ _screen_fuzzy_fallback_find(E_Config_Randr2 *cfg, const char *id)
{
E_Config_Randr2_Screen *cs;
cs = _config_screen_string_find(cfg, id);
cs = _config_screen_string_find(cfg, name);
if ((cs) && (cs->id)) return _screen_fuzzy_fallback_find(cfg, cs->id);
}
return s;