aboutsummaryrefslogtreecommitdiffstats
path: root/libosmocore/include/osmocore/bitvec.h
diff options
context:
space:
mode:
authorHarald Welte <laforge@netfilter.org>2010-02-20 19:10:44 +0100
committerHarald Welte <laforge@netfilter.org>2010-02-20 19:10:44 +0100
commita3d5514c21d1086e47548c134a3d108047b458ce (patch)
tree0c45350f7684486cd99e3ed497327476c7a890df /libosmocore/include/osmocore/bitvec.h
parent13f52974e65ae128355ab91dd090c6e0ca5240c5 (diff)
change from u_int* to uint* (stdint.h)
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 */