diff options
author | Holger Hans Peter Freyther <holger@moiji-mobile.com> | 2014-12-28 18:22:48 +0100 |
---|---|---|
committer | Holger Hans Peter Freyther <holger@moiji-mobile.com> | 2014-12-28 18:22:48 +0100 |
commit | c8c33094afe13b78a5c75ecfd62eff06e68d197d (patch) | |
tree | c00b6874db60c2bd2891a47333f24b7456f14ac8 | |
parent | 1b12d16c4c6a2914e4d3def56b304cb0da9246b0 (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.
-rw-r--r-- | include/osmocom/core/bitvec.h | 2 |
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 */ }; |