test: Fix cmocka unused-parameter warnings

master
tytan652 2021-12-13 10:13:24 +01:00 committed by Jim
parent 865a358a52
commit 580cf1163a
2 changed files with 4 additions and 0 deletions

View File

@ -7,6 +7,8 @@
static void bitstream_test(void **state)
{
UNUSED_PARAMETER(state);
struct bitstream_reader reader;
uint8_t data[6] = {0x34, 0xff, 0xe1, 0x23, 0x91, 0x45};

View File

@ -7,6 +7,8 @@
static void array_basic_test(void **state)
{
UNUSED_PARAMETER(state);
DARRAY(uint8_t) testarray;
da_init(testarray);