xfsread inlined uses more space, so remove the inline tag. This

doesn't help clang, but buys us another 32 bytes for gcc 4.2.1. It
also eliminates a warning from gcc 6.3.0 that says inlining this would
be unhelpful.
This commit is contained in:
imp 2017-03-29 18:35:20 +00:00
parent eac687108f
commit d38a9c3955

View File

@ -143,7 +143,7 @@ strcmp(const char *s1, const char *s2)
#define UFS_SMALL_CGBASE
#include "ufsread.c"
static inline int
static int
xfsread(ufs_ino_t inode, void *buf, size_t nbyte)
{
if ((size_t)fsread(inode, buf, nbyte) != nbyte) {