aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-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 */
};