Fix a typo

Signed-off-by: zwjhit <2725096176@qq.com>
This commit is contained in:
zwjhit
2022-06-23 13:46:26 +08:00
parent 84f7818199
commit 9c9a2f20f3
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -54,8 +54,8 @@ typedef struct {
void* data;
uint32_t spObjNum;
void* offsets;
uint32_t processID; /**< filled by kernel, processId of sender/reciever */
uint32_t taskID; /**< filled by kernel, taskId of sender/reciever */
uint32_t processID; /**< filled by kernel, processId of sender/receiver */
uint32_t taskID; /**< filled by kernel, taskId of sender/receiver */
uint32_t userID;
uint32_t gid;
#ifdef __LINUX__
+1 -1
View File
@@ -52,7 +52,7 @@ enum IpcErr {
LITEIPC_EINVAL = -10, /* Invalid argument */
LITEIPC_EBADF, /* Bad file descriptor */
LITEIPC_ENOMEM, /* No memory */
LITEIPC_ENOENT, /* Service is not avaliable; For example, Transact on a timeout ipc callback */
LITEIPC_ENOENT, /* Service is not available; For example, Transact on a timeout ipc callback */
LITEIPC_EINTNL, /* Internal error, check strerrno in log */
LITEIPC_OK = 0,
};