aboutsummaryrefslogtreecommitdiffstats
path: root/samsung-ipc/call.c
diff options
context:
space:
mode:
authorSimon Busch <morphis@gravedo.de>2011-10-29 18:38:42 +0200
committerSimon Busch <morphis@gravedo.de>2011-10-29 18:38:42 +0200
commitb722c61ccd5fea0e19ec4e3274a37cd99fa1b7d5 (patch)
treecb2688709e0f86541c6094d82d7d53b2d7b558c3 /samsung-ipc/call.c
parentd74590f98e59ad6c4fcbef8b9fabcce0f84659f0 (diff)
downloadexternal_libsamsung-ipc-b722c61ccd5fea0e19ec4e3274a37cd99fa1b7d5.zip
external_libsamsung-ipc-b722c61ccd5fea0e19ec4e3274a37cd99fa1b7d5.tar.gz
external_libsamsung-ipc-b722c61ccd5fea0e19ec4e3274a37cd99fa1b7d5.tar.bz2
Fix several places in code for latest infrastructure changes
Signed-off-by: Simon Busch <morphis@gravedo.de>
Diffstat (limited to 'samsung-ipc/call.c')
-rw-r--r--samsung-ipc/call.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/samsung-ipc/call.c b/samsung-ipc/call.c
index 9d94931..2ca3ef4 100644
--- a/samsung-ipc/call.c
+++ b/samsung-ipc/call.c
@@ -39,7 +39,7 @@ void ipc_call_outgoing_setup(struct ipc_call_outgoing *message, unsigned char ty
/**
* Retrieve number of calls in list of calls.
**/
-unsigned int ipc_call_list_response_get_num_entries(struct ipc_response *response)
+unsigned int ipc_call_list_response_get_num_entries(struct ipc_message_info *response)
{
unsigned int count = 0, n = 0;
@@ -53,7 +53,7 @@ unsigned int ipc_call_list_response_get_num_entries(struct ipc_response *respons
/**
* Retrieve one specific entry from a list of calls.
**/
-struct ipc_call_list_entry* ipc_call_list_response_get_entry(struct ipc_response *response, unsigned int num)
+struct ipc_call_list_entry* ipc_call_list_response_get_entry(struct ipc_message_info *response, unsigned int num)
{
unsigned int count = 0, pos = 1, n = 0;
struct ipc_call_list_entry *entry = NULL;
@@ -77,7 +77,7 @@ struct ipc_call_list_entry* ipc_call_list_response_get_entry(struct ipc_response
/**
* Retrieve the number of a call entry in the list of calls
**/
-char* ipc_call_list_response_get_entry_number(struct ipc_response *response, unsigned int num)
+char* ipc_call_list_response_get_entry_number(struct ipc_message_info *response, unsigned int num)
{
unsigned int count = 0, pos = 1, n = 0;
struct ipc_call_list_entry *entry = NULL;