diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-02-03 19:55:26 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-02-03 19:55:26 +0000 |
commit | 8f72fa9f08c57ead46c895d458070c3c674e5be3 (patch) | |
tree | a55675a3b169cf9d543f32169854fdf9c27588e4 /linux-user | |
parent | e84857af8c0b501fd19776ac358ca3aa4a0517bd (diff) | |
download | qemu-8f72fa9f08c57ead46c895d458070c3c674e5be3.tar.gz qemu-8f72fa9f08c57ead46c895d458070c3c674e5be3.tar.bz2 qemu-8f72fa9f08c57ead46c895d458070c3c674e5be3.zip |
linux-user: Remove incorrect break;
Reported-By: Laurent Desnogues <laurent.desnogues@gmail.com>
Signed-off-by: Riku Voipio <riku.voipio@iki.fi>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6503 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user')
-rw-r--r-- | linux-user/syscall.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 8d52099cb9..40eab4e624 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -4424,7 +4424,6 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1, } else ret = get_errno(readlink(path(p), p2, arg3)); - break; } unlock_user(p2, arg2, ret); unlock_user(p, arg1, 0); |