minor fix

This commit is contained in:
rusefi 2019-01-08 23:02:04 -05:00
parent 3f21c9e957
commit 4656e375d0
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@
#include "interpolation.h"
#include "unit_test_framework.h"
static int testIndex(const int expected, const float array[], int size, float value) {
static void testIndex(const int expected, const float array[], int size, float value) {
assertEquals(expected, findIndex(array, size, value));
assertEquals(expected, findIndex2(array, size, value));
}