ecore-drm2: Reduce duplicated code

No need for this line to be there twice as it is going to be called in
either case.

NB: No functional changes
This commit is contained in:
Christopher Michael 2019-02-06 10:03:02 -05:00
parent 65bf9c6e0f
commit 3999a97579
1 changed files with 2 additions and 2 deletions

View File

@ -859,14 +859,14 @@ next:
{
output->connected = EINA_FALSE;
output->enabled = EINA_FALSE;
_output_event_send(output);
}
else
{
output->connected = EINA_TRUE;
output->enabled = EINA_TRUE;
_output_event_send(output);
}
_output_event_send(output);
}
free(connected);
}