mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
fix typo: delete redundant semicolon
Double semicolons should be single. Signed-off-by: Dong Xu Wang <wdongxu@linux.vnet.ibm.com> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
This commit is contained in:
parent
91a9ecefb6
commit
3a93113a00
15 changed files with 21 additions and 21 deletions
|
@ -2377,7 +2377,7 @@ static inline abi_long host_to_target_semid_ds(abi_ulong target_addr,
|
|||
if (!lock_user_struct(VERIFY_WRITE, target_sd, target_addr, 0))
|
||||
return -TARGET_EFAULT;
|
||||
if (host_to_target_ipc_perm(target_addr,&(host_sd->sem_perm)))
|
||||
return -TARGET_EFAULT;;
|
||||
return -TARGET_EFAULT;
|
||||
target_sd->sem_nsems = tswapal(host_sd->sem_nsems);
|
||||
target_sd->sem_otime = tswapal(host_sd->sem_otime);
|
||||
target_sd->sem_ctime = tswapal(host_sd->sem_ctime);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue