diff options
Diffstat (limited to 'libs/bitfield-c/tests/read_tests.c')
-rw-r--r-- | libs/bitfield-c/tests/read_tests.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/bitfield-c/tests/read_tests.c b/libs/bitfield-c/tests/read_tests.c index 5008cc52..192a0fe0 100644 --- a/libs/bitfield-c/tests/read_tests.c +++ b/libs/bitfield-c/tests/read_tests.c @@ -3,7 +3,7 @@ #include <canutil/read.h> const uint64_t BIG_ENDIAN_TEST_DATA = __builtin_bswap64(0xEB00000000000000); -const uint8_t ARRAY_TEST_DATA[] = {0xEB, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}; +const unsigned int ARRAY_TEST_DATA[] = {0xEB, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}; START_TEST (test_eightbyte_parse_float) { |