projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
952d5d3
)
bsd-user: Remove stray 'inline' from do_bsd_close
author
Warner Losh
<imp@bsdimp.com>
Mon, 20 Jun 2022 21:14:37 +0000
(15:14 -0600)
committer
Warner 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
patch
|
blob
|
history
diff --git
a/bsd-user/bsd-file.h
b/bsd-user/bsd-file.h
index 108a50618505dae5f6f06233a377f1108077c488..588e0c50d455629cdbf2ad3905323b006b8dae3c 100644
(file)
--- 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));
}