From 6268e6ac8ee08a0b17ebb6ac4ed03fcaa4dbdaa2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20O=2E=20Sel=C3=A5sdal?= Date: Wed, 19 Jun 2013 18:48:27 +0200 Subject: [PATCH] update comments --- include/ucore/bitvec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ucore/bitvec.h b/include/ucore/bitvec.h index af11d67..acbedaa 100644 --- a/include/ucore/bitvec.h +++ b/include/ucore/bitvec.h @@ -8,7 +8,7 @@ extern "C" { struct UCBitVec { //storage for the bits unsigned long *vec; - //length of the above vec. (Not the number of bits !) + //length in bytes of the above vec. size_t vec_len; };