From 814b55e6232b65978863db7c9d649cfec9f6d3d1 Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Mon, 6 Jul 2020 01:34:27 +0200 Subject: Adjust to libsamsung-ipc ipc_sec_lock_infomation_request_data typo fix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Acked-by: Joonas Kylmälä --- sim.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3