ACM : fix compiler warning on non returning function

This commit is contained in:
Jason Short 2012-10-21 14:37:42 -07:00
parent 8842a7dc1b
commit 6a40fcd56a

View File

@ -258,7 +258,7 @@ static int16_t get_desired_speed(int16_t max_speed)
return max_speed; return max_speed;
} }
static int16_t reset_desired_speed() static void reset_desired_speed()
{ {
max_speed_old = 0; max_speed_old = 0;
} }