From 347f07b5de59660642018f09f7d9e4093d11e99c Mon Sep 17 00:00:00 2001 From: Amit Mahajan Date: Wed, 4 Jan 2017 16:50:24 -0800 Subject: [PATCH] Change list of applications in CardStatus from array to vec. Test: none Bug: 32020264 Change-Id: I39420333cd07126904f170487de4d45d630e3c26 --- radio/1.0/types.hal | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/radio/1.0/types.hal b/radio/1.0/types.hal index 6475b4ffcd..49ba30ec4a 100644 --- a/radio/1.0/types.hal +++ b/radio/1.0/types.hal @@ -1089,8 +1089,7 @@ struct CardStatus { int32_t gsmUmtsSubscriptionAppIndex; // value < RadioConst:CARD_MAX_APPS, -1 if none int32_t cdmaSubscriptionAppIndex; // value < RadioConst:CARD_MAX_APPS, -1 if none int32_t imsSubscriptionAppIndex; // value < RadioConst:CARD_MAX_APPS, -1 if none - int32_t numApplications; // value <= RadioConst:CARD_MAX_APPS - AppStatus[RadioConst:CARD_MAX_APPS] applications; + vec applications; // size <= RadioConst:CARD_MAX_APPS }; /*