minor fix

This commit is contained in:
rusefi 2019-01-08 23:02:04 -05:00
parent f68cb90e6c
commit 70a4d25e0b
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));
}