Skip to content

Commit 3f1b023

Browse files
committed
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 <[email protected]> Reviewed-by: Richard Henderson <[email protected]>
1 parent 952d5d3 commit 3f1b023

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bsd-user/bsd-file.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ static abi_long do_bsd_openat(abi_long arg1, abi_long arg2,
252252
}
253253

254254
/* close(2) */
255-
static inline abi_long do_bsd_close(abi_long arg1)
255+
static abi_long do_bsd_close(abi_long arg1)
256256
{
257257
return get_errno(close(arg1));
258258
}

0 commit comments

Comments
 (0)