summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2020-10-12 16:35:43 +0200
committerAleksander Morgado <aleksander@aleksander.es>2020-10-12 17:47:37 +0200
commit5cf36cae2ef591815f8e55561a7cad5ecf98a1c2 (patch)
tree5c37417a142d49abd4651695a6e482378af436c6
parent2cd28244e81665e013a4672a197ed25b2ec08ee3 (diff)
qmicli,nas: fix element types used in 'Get Cell Location Info' handling
-rw-r--r--src/qmicli/qmicli-nas.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/qmicli/qmicli-nas.c b/src/qmicli/qmicli-nas.c
index 662c5ce..cc39c9b 100644
--- a/src/qmicli/qmicli-nas.c
+++ b/src/qmicli/qmicli-nas.c
@@ -2826,9 +2826,9 @@ get_cell_location_info_ready (QmiClientNas *client,
g_free (plmn);
for (i = 0; i < array->len; i++) {
- QmiMessageNasGetCellLocationInfoOutputUmtsInfoCellElement *element;
+ QmiMessageNasGetCellLocationInfoOutputUmtsInfoV2CellElement *element;
- element = &g_array_index (array, QmiMessageNasGetCellLocationInfoOutputUmtsInfoCellElement, i);
+ element = &g_array_index (array, QmiMessageNasGetCellLocationInfoOutputUmtsInfoV2CellElement, i);
g_print ("\tCell [%u]:\n"
"\t\tUTRA Absolute RF Channel Number: '%" G_GUINT16_FORMAT"'\n"
"\t\tPrimary Scrambling Code: '%" G_GUINT16_FORMAT"'\n"
@@ -2842,9 +2842,9 @@ get_cell_location_info_ready (QmiClientNas *client,
}
for (i = 0; i < array2->len; i++) {
- QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringGeranElement *element;
+ QmiMessageNasGetCellLocationInfoOutputUmtsInfoV2NeighboringGeranElement *element;
- element = &g_array_index (array2, QmiMessageNasGetCellLocationInfoOutputUmtsInfoNeighboringGeranElement, i);
+ element = &g_array_index (array2, QmiMessageNasGetCellLocationInfoOutputUmtsInfoV2NeighboringGeranElement, i);
g_print ("\tNeighboring GERAN Cell [%u]:\n"
"\t\tGERAN Absolute RF Channel Number: '%" G_GUINT16_FORMAT"'\n",
i,
@@ -2935,9 +2935,9 @@ get_cell_location_info_ready (QmiClientNas *client,
s_intra_search_threshold);
for (i = 0; i < array->len; i++) {
- QmiMessageNasGetCellLocationInfoOutputIntrafrequencyLteInfoCellElement *element;
+ QmiMessageNasGetCellLocationInfoOutputIntrafrequencyLteInfoV2CellElement *element;
- element = &g_array_index (array, QmiMessageNasGetCellLocationInfoOutputIntrafrequencyLteInfoCellElement, i);
+ element = &g_array_index (array, QmiMessageNasGetCellLocationInfoOutputIntrafrequencyLteInfoV2CellElement, i);
g_print ("\tCell [%u]:\n"
"\t\tPhysical Cell ID: '%" G_GUINT16_FORMAT"'\n"
"\t\tRSRQ: '%.1lf' dB\n"