aboutsummaryrefslogtreecommitdiffstats
path: root/libosmocore/include/osmocore/bitvec.h
diff options
context:
space:
mode:
Diffstat (limited to 'libosmocore/include/osmocore/bitvec.h')
-rw-r--r--libosmocore/include/osmocore/bitvec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libosmocore/include/osmocore/bitvec.h b/libosmocore/include/osmocore/bitvec.h
index b35aebf16..11cb01ea5 100644
--- a/libosmocore/include/osmocore/bitvec.h
+++ b/libosmocore/include/osmocore/bitvec.h
@@ -36,7 +36,7 @@ enum bit_value {
struct bitvec {
unsigned int cur_bit; /* curser to the next unused bit */
unsigned int data_len; /* length of data array in bytes */
- u_int8_t *data; /* pointer to data array */
+ uint8_t *data; /* pointer to data array */
};
/* check if the bit is 0 or 1 for a given position inside a bitvec */