Try to fix build error by giving function a return type
authorMartin Mathieson <martin.r.mathieson@googlemail.com>
Mon, 8 Sep 2014 14:37:27 +0000 (15:37 +0100)
committerMartin Mathieson <martin.r.mathieson@googlemail.com>
Mon, 8 Sep 2014 14:38:57 +0000 (14:38 +0000)
Change-Id: I157b6309bc8cb0bef6fc0cd213fd4ec7e4c375ef
Reviewed-on: https://code.wireshark.org/review/4035
Reviewed-by: Martin Mathieson <martin.r.mathieson@googlemail.com>
asn1/lte-rrc/packet-lte-rrc-template.c
epan/dissectors/packet-lte-rrc.c

index 08c7fd17232beb9da344d16918c0f28fd4276388..3922a290b6fd5d9e48a480a95b0c7b7869efc82e 100644 (file)
@@ -1971,7 +1971,7 @@ static meas_capabilities_item_band_mappings_t* private_data_meas_capabilities_it
     return &private_data->meas_capabilities_item_band_mappings;
 }
 
-static set_freq_band_indicator(guint32 value, asn1_ctx_t *actx)
+static void set_freq_band_indicator(guint32 value, asn1_ctx_t *actx)
 {
     /* Store band mapping for this item in the next position */
     meas_capabilities_item_band_mappings_t *mappings = private_data_meas_capabilities_item_band_mappings(actx);
index 620ac7386452d0242db1604ee1d3cb9c28a43ef3..fba1ac3c6a396589f2079aa2d34487c68ec6d8a1 100644 (file)
@@ -5352,7 +5352,7 @@ static meas_capabilities_item_band_mappings_t* private_data_meas_capabilities_it
     return &private_data->meas_capabilities_item_band_mappings;
 }
 
-static set_freq_band_indicator(guint32 value, asn1_ctx_t *actx)
+static void set_freq_band_indicator(guint32 value, asn1_ctx_t *actx)
 {
     /* Store band mapping for this item in the next position */
     meas_capabilities_item_band_mappings_t *mappings = private_data_meas_capabilities_item_band_mappings(actx);