stkutil: Fix ofono_bool_t usage

The actual datatype is bool
This commit is contained in:
Denis Kenzior 2019-01-18 08:55:27 -06:00
parent 5b988c052f
commit dbc314ebc4
1 changed files with 1 additions and 1 deletions

View File

@ -4477,7 +4477,7 @@ static bool build_dataobj_imei(struct stk_tlv_builder *tlv,
static bool build_dataobj_help_request(struct stk_tlv_builder *tlv,
const void *data, bool cr)
{
const ofono_bool_t *help = data;
const bool *help = data;
uint8_t tag = STK_DATA_OBJECT_TYPE_HELP_REQUEST;
if (*help != true)