aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/core/bitvec.h
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-12-28 18:22:48 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-12-28 18:22:48 +0100
commitc8c33094afe13b78a5c75ecfd62eff06e68d197d (patch)
treec00b6874db60c2bd2891a47333f24b7456f14ac8 /include/osmocom/core/bitvec.h
parent1b12d16c4c6a2914e4d3def56b304cb0da9246b0 (diff)
bitvec: Fix typo in the csn1 encoding code
We can curse about CSN.1 and 3GPP but I think we want to call it cursor here.
Diffstat (limited to 'include/osmocom/core/bitvec.h')
-rw-r--r--include/osmocom/core/bitvec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osmocom/core/bitvec.h b/include/osmocom/core/bitvec.h
index 31382260..62e2e7b6 100644
--- a/include/osmocom/core/bitvec.h
+++ b/include/osmocom/core/bitvec.h
@@ -45,7 +45,7 @@ enum bit_value {
/*! \brief structure describing a bit vector */
struct bitvec {
- unsigned int cur_bit; /*!< \brief curser to the next unused bit */
+ unsigned int cur_bit; /*!< \brief cursor to the next unused bit */
unsigned int data_len; /*!< \brief length of data array in bytes */
uint8_t *data; /*!< \brief pointer to data array */
};