diff options
Diffstat (limited to 'libmisc/tests/test_endian.c')
-rw-r--r-- | libmisc/tests/test_endian.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmisc/tests/test_endian.c b/libmisc/tests/test_endian.c index dcb3cc2..8c48727 100644 --- a/libmisc/tests/test_endian.c +++ b/libmisc/tests/test_endian.c @@ -11,7 +11,7 @@ #include "test.h" int main() { - uint8_t act[(2+4+8)*2] = {0}; + uint8_t act[(2+4+8)*2] = {}; size_t pos = 0; pos += uint16be_encode(&act[pos], UINT16_C(0x1234)); pos += uint32be_encode(&act[pos], UINT32_C(0x56789ABC)); |