aboutsummaryrefslogtreecommitdiff
path: root/libqcdm/tests/test-qcdm-crc.c
diff options
context:
space:
mode:
Diffstat (limited to 'libqcdm/tests/test-qcdm-crc.c')
-rw-r--r--libqcdm/tests/test-qcdm-crc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libqcdm/tests/test-qcdm-crc.c b/libqcdm/tests/test-qcdm-crc.c
index 0cb3e863..e48ddaf3 100644
--- a/libqcdm/tests/test-qcdm-crc.c
+++ b/libqcdm/tests/test-qcdm-crc.c
@@ -42,7 +42,7 @@ test_crc16_2 (void *f, void *data)
guint16 expected = 0x6D69;
/* CRC check */
- crc = crc16 (buf, sizeof (buf));
+ crc = dm_crc16 (buf, sizeof (buf));
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));
+ crc = dm_crc16 (buf, sizeof (buf));
g_assert (crc == expected);
}