Remove value from return

The sm_service_domain_filter_by_assignment function returns a
void value, this caused a compilation error. The return was
changed to return void.

Change-Id: Ifbcb4f0ebfa721b81fb09a219497a721ef2fef55
Signed-off-by: Erich Cordoba <erich.cordoba.malibran@intel.com>
This commit is contained in:
Erich Cordoba 2018-08-25 14:51:47 -05:00
parent 53a055cb3a
commit d21026748a
1 changed files with 1 additions and 1 deletions

View File

@ -322,7 +322,7 @@ static void sm_service_domain_filter_by_assignment( void* user_data[],
DPRINTFE( "Failed to get hostname, error=%s.",
sm_error_str( error ) );
hostname[0] = '\0';
return error;
return;
}
SmNodeScheduleStateT current_schedule_state = sm_get_controller_state( hostname );
SmNodeScheduleStateT to_schedule_state;