removing unused parameter

This commit is contained in:
rusefi 2017-05-15 11:44:19 -04:00
parent d819252dd7
commit 8ab66a61c5
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@
#if EFI_SIGNAL_EXECUTOR_SLEEP || defined(__DOXYGEN__)
void scheduleByTime(const char *prefix, scheduling_s *scheduling, efitimeus_t time, schfunc_t callback, void *param) {
void scheduleByTime(scheduling_s *scheduling, efitimeus_t time, schfunc_t callback, void *param) {
scheduleTask(scheduling, time - getTimeNowUs(), callback, param);
}