Try to fix build error by giving function a return type

Change-Id: I157b6309bc8cb0bef6fc0cd213fd4ec7e4c375ef
Reviewed-on: https://code.wireshark.org/review/4035
Reviewed-by: Martin Mathieson <martin.r.mathieson@googlemail.com>
This commit is contained in:
Martin Mathieson 2014-09-08 15:37:27 +01:00
parent 806981d156
commit 3f0483022b
2 changed files with 2 additions and 2 deletions

View 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);

View 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);