From: Warner Losh Date: Mon, 20 Jun 2022 21:14:37 +0000 (-0600) Subject: bsd-user: Remove stray 'inline' from do_bsd_close X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=3f1b0235f68ff74ebfd98b17626e4254c4345fa8;p=qemu.git bsd-user: Remove stray 'inline' from do_bsd_close 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 Reviewed-by: Richard Henderson --- diff --git a/bsd-user/bsd-file.h b/bsd-user/bsd-file.h index 108a506185..588e0c50d4 100644 --- a/bsd-user/bsd-file.h +++ b/bsd-user/bsd-file.h @@ -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)); }