summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-07-06 01:34:27 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-07-06 23:17:59 +0200
commit814b55e6232b65978863db7c9d649cfec9f6d3d1 (patch)
tree2094415d439ef6e52aebd7fb772eaef70196a0fc
parent22430e685bffe942745485877b1d5404cf45f113 (diff)
downloadhardware_replicant_libsamsung-ril-814b55e6232b65978863db7c9d649cfec9f6d3d1.tar.gz
hardware_replicant_libsamsung-ril-814b55e6232b65978863db7c9d649cfec9f6d3d1.tar.bz2
hardware_replicant_libsamsung-ril-814b55e6232b65978863db7c9d649cfec9f6d3d1.zip
Adjust to libsamsung-ipc ipc_sec_lock_infomation_request_data typo fix
In libsamsung-ipc, ipc_sec_lock_infomation_request_data was changed to ipc_sec_lock_information_request_data as the former seems to be a typo. This change was made by the following libsamsung-ipc commit: b5c3a52dbabbb8a7bfda70b32378df68b83ce632 b5c3a52 Fix ipc_sec_lock_infomation_request_data typo As ipc_sec_lock_infomation_request_data was used in libsamsung-ril too, we need to do the change here too, as otherwise we will end with compilation errors like that while compiling Replicant 6.0: hardware/replicant/libsamsung-ril/sim.c: In function 'ipc_sec_callback': hardware/replicant/libsamsung-ril/sim.c:371:46: error: storage size of 'request_data' isn't known struct ipc_sec_lock_infomation_request_data request_data; Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> Acked-by: Joonas Kylmälä <joonas.kylmala@iki.fi>
-rw-r--r--sim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sim.c b/sim.c
index e2e4b7b..12c313e 100644
--- a/sim.c
+++ b/sim.c
@@ -368,7 +368,7 @@ complete:
int ipc_sec_callback(struct ipc_message *message)
{
- struct ipc_sec_lock_infomation_request_data request_data;
+ struct ipc_sec_lock_information_request_data request_data;
struct ipc_gen_phone_res_data *data;
struct ril_request *request = NULL;
void *request_complete_data;