From: Michael S. Tsirkin Date: Wed, 30 Sep 2009 18:56:44 +0000 (+0000) Subject: linux-user: fix coding style nit X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~10419 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e8bbe36c03c6044953aa5b3fa8bcd7cb7b7b88e3;p=sdk%2Femulator%2Fqemu.git linux-user: fix coding style nit Put space between = and & when taking a pointer, to avoid confusion with old-style "&=". Signed-off-by: Michael S. Tsirkin Signed-off-by: Blue Swirl --- diff --git a/linux-user/syscall.c b/linux-user/syscall.c index b42567c..bf06d14 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -2067,7 +2067,7 @@ static inline abi_long target_to_host_ipc_perm(struct ipc_perm *host_ip, if (!lock_user_struct(VERIFY_READ, target_sd, target_addr, 1)) return -TARGET_EFAULT; - target_ip=&(target_sd->sem_perm); + target_ip = &(target_sd->sem_perm); host_ip->__key = tswapl(target_ip->__key); host_ip->uid = tswapl(target_ip->uid); host_ip->gid = tswapl(target_ip->gid);