]> git.proxmox.com Git - mirror_qemu.git/blobdiff - bsd-user/freebsd/os-syscall.c
bsd-user: Add missing break after do_bsd_preadv
[mirror_qemu.git] / bsd-user / freebsd / os-syscall.c
index e9b1b663af4e01dead805684ca17b394d46ff6c7..fa60df529efa78bf4f13e80a65109440e17bc989 100644 (file)
@@ -240,6 +240,7 @@ static abi_long freebsd_syscall(void *cpu_env, int num, abi_long arg1,
 
     case TARGET_FREEBSD_NR_preadv: /* preadv(2) */
         ret = do_bsd_preadv(cpu_env, arg1, arg2, arg3, arg4, arg5, arg6);
+        break;
 
     case TARGET_FREEBSD_NR_write: /* write(2) */
         ret = do_bsd_write(arg1, arg2, arg3);