]> git.proxmox.com Git - mirror_qemu.git/commitdiff
bsd-user: Remove stray 'inline' from do_bsd_close
authorWarner Losh <imp@bsdimp.com>
Mon, 20 Jun 2022 21:14:37 +0000 (15:14 -0600)
committerWarner Losh <imp@bsdimp.com>
Sat, 2 Jul 2022 13:52:48 +0000 (07:52 -0600)
In the last series, I inadvertantly didn't remove this inline, but did
all the others. Remove it for consistency.

Signed-off-by: Warner Losh <imp@bsdimp.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
bsd-user/bsd-file.h

index 108a50618505dae5f6f06233a377f1108077c488..588e0c50d455629cdbf2ad3905323b006b8dae3c 100644 (file)
@@ -252,7 +252,7 @@ static abi_long do_bsd_openat(abi_long arg1, abi_long arg2,
 }
 
 /* close(2) */
-static inline abi_long do_bsd_close(abi_long arg1)
+static abi_long do_bsd_close(abi_long arg1)
 {
     return get_errno(close(arg1));
 }