Fix code style

This commit is contained in:
George Oikonomou 2018-03-17 23:55:00 +00:00
parent 9b37e4b7fb
commit d98d8f586f

View File

@ -144,7 +144,7 @@ button_hal_get_by_id(uint8_t unique_id)
for(button = button_hal_buttons; *button != NULL; button++) {
if((*button)->unique_id == unique_id) {
return (*button);
return *button;
}
}