From f3066bb17e43b0f1b7c14a273b2acad42927cd31 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sun, 18 Jan 2009 19:02:46 +0000 Subject: [PATCH] add zero-length data field to abis_fom_hdr --- include/openbsc/abis_nm.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/openbsc/abis_nm.h b/include/openbsc/abis_nm.h index c683f1c4b..d1534158c 100644 --- a/include/openbsc/abis_nm.h +++ b/include/openbsc/abis_nm.h @@ -55,6 +55,7 @@ struct abis_om_fom_hdr { u_int8_t msg_type; u_int8_t obj_class; struct abis_om_obj_inst obj_inst; + u_int8_t data[0]; } __attribute__ ((packed)); #define ABIS_OM_FOM_HDR_SIZE (sizeof(struct abis_om_hdr) + sizeof(struct abis_om_fom_hdr))