summaryrefslogtreecommitdiff
path: root/ucoo/utils
diff options
context:
space:
mode:
Diffstat (limited to 'ucoo/utils')
-rw-r--r--ucoo/utils/test/test_crc.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ucoo/utils/test/test_crc.cc b/ucoo/utils/test/test_crc.cc
index c20600d..219c38b 100644
--- a/ucoo/utils/test/test_crc.cc
+++ b/ucoo/utils/test/test_crc.cc
@@ -35,7 +35,7 @@ main (int argc, const char **argv)
{
ucoo::Test test (tsuite, "crc8 test vector");
static const uint8_t test_vector[] = { 0x02, 0x1c, 0xb8, 0x01, 0, 0, 0, 0xa2 };
- if (ucoo::crc8_compute (test_vector, lengthof (test_vector)) != 0)
+ if (ucoo::crc8_compute (test_vector, ucoo::lengthof (test_vector)) != 0)
test.fail ();
}
{