Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 1 Feb 2024 22:05:25 GMT
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 1414121fc3f3 - stable/13 - sys/mount.h: use __inline
Message-ID:  <202402012205.411M5PoP039735@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=1414121fc3f3db204baa2eedde3a72c99dc95f12

commit 1414121fc3f3db204baa2eedde3a72c99dc95f12
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2024-01-30 22:14:25 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2024-02-01 22:05:03 +0000

    sys/mount.h: use __inline
    
    (cherry picked from commit f76cb7bd08e02d868e640b3442b2bc45edf8f56a)
---
 sys/sys/mount.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/sys/mount.h b/sys/sys/mount.h
index bb8719d8a4f1..90e68e560b2f 100644
--- a/sys/sys/mount.h
+++ b/sys/sys/mount.h
@@ -52,7 +52,7 @@
 typedef struct fsid { int32_t val[2]; } fsid_t;	/* filesystem id type */
 
 /* Returns non-zero if fsids are different. */
-static inline int
+static __inline int
 fsidcmp(const fsid_t *a, const fsid_t *b)
 {
 	return (a->val[0] != b->val[0] || a->val[1] != b->val[1]);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202402012205.411M5PoP039735>