Update task_content.c

This commit is contained in:
bparker06 2019-04-12 13:04:59 -04:00 committed by GitHub
parent f7b0c0947c
commit 15c0191f08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2011,7 +2011,10 @@ void content_get_subsystem_friendly_name(const char* subsystem_name, char* subsy
for (i = 0; i < subsystem_current_count; i++, subsystem++)
{
if (string_is_equal(subsystem_name, subsystem->ident))
{
strlcpy(subsystem_friendly_name, subsystem->desc, len);
break;
}
}
return;