diff options
Diffstat (limited to 'libwmc/tests/test-wmc-crc.c')
-rw-r--r-- | libwmc/tests/test-wmc-crc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libwmc/tests/test-wmc-crc.c b/libwmc/tests/test-wmc-crc.c index a767481d..29650113 100644 --- a/libwmc/tests/test-wmc-crc.c +++ b/libwmc/tests/test-wmc-crc.c @@ -42,7 +42,7 @@ test_crc16_2 (void *f, void *data) guint16 expected = 0x6D69; /* CRC check */ - crc = crc16 (buf, sizeof (buf), 0); + crc = wmc_crc16 (buf, sizeof (buf), 0); g_assert (crc == expected); } @@ -59,7 +59,7 @@ test_crc16_1 (void *f, void *data) guint16 expected = 0x097A; /* CRC check */ - crc = crc16 (buf, sizeof (buf), 0); + crc = wmc_crc16 (buf, sizeof (buf), 0); g_assert (crc == expected); } |