diff options
Diffstat (limited to 'include/osmocore/protocol')
-rw-r--r-- | include/osmocore/protocol/gsm_08_08.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/osmocore/protocol/gsm_08_08.h b/include/osmocore/protocol/gsm_08_08.h index 9c29ba9c..6b8f9359 100644 --- a/include/osmocore/protocol/gsm_08_08.h +++ b/include/osmocore/protocol/gsm_08_08.h @@ -30,14 +30,14 @@ enum BSSAP_MSG_TYPE { }; struct bssmap_header { - u_int8_t type; - u_int8_t length; + uint8_t type; + uint8_t length; } __attribute__((packed)); struct dtap_header { - u_int8_t type; - u_int8_t link_id; - u_int8_t length; + uint8_t type; + uint8_t link_id; + uint8_t length; } __attribute__((packed)); |