summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/muse_core_ipc.h2
-rw-r--r--src/muse_core_ipc.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/include/muse_core_ipc.h b/include/muse_core_ipc.h
index cfd8f55..4dee21e 100644
--- a/include/muse_core_ipc.h
+++ b/include/muse_core_ipc.h
@@ -50,7 +50,7 @@ int muse_core_ipc_send_msg(int sock_fd, const char *msg);
int muse_core_ipc_recv_msg(int sock_fd, char *msg);
void muse_core_ipc_set_timeout(int sock_fd, unsigned long timeout_sec);
gboolean muse_core_ipc_data_job_function(muse_core_workqueue_job_t * job);
-int muse_core_ipc_push_data(int sock_fd, const char *data, int size, int data_id);
+int muse_core_ipc_push_data(int sock_fd, const char *data, int size, uint64_t data_id);
char *muse_core_ipc_get_data(muse_module_h module);
intptr_t muse_core_ipc_get_handle(muse_module_h module);
int muse_core_ipc_set_handle(muse_module_h module, intptr_t handle);
diff --git a/src/muse_core_ipc.c b/src/muse_core_ipc.c
index 8699c9b..fb379bb 100644
--- a/src/muse_core_ipc.c
+++ b/src/muse_core_ipc.c
@@ -30,7 +30,7 @@
typedef struct muse_recv_data_head {
unsigned int marker;
- int id;
+ uint64_t id;
int size;
} muse_recv_data_head_t;
@@ -387,7 +387,7 @@ void muse_core_ipc_set_timeout(int sock_fd, unsigned long timeout_sec)
LOGD("Leave");
}
-int muse_core_ipc_push_data(int sock_fd, const char *data, int size, int data_id)
+int muse_core_ipc_push_data(int sock_fd, const char *data, int size, uint64_t data_id)
{
int ret = MM_ERROR_NONE;