git: 0dd45fdb747b - stable/14 - sys/mount.h: use __inline

From: Konstantin Belousov <kib_at_FreeBSD.org>
Date: Thu, 01 Feb 2024 22:04:30 UTC
The branch stable/14 has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=0dd45fdb747bbc86ff3eba5e69c683099e833648

commit 0dd45fdb747bbc86ff3eba5e69c683099e833648
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:04:10 +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 2c2d4a0a479d..9c36657f69f7 100644
--- a/sys/sys/mount.h
+++ b/sys/sys/mount.h
@@ -53,7 +53,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]);