From dbe9c71a1789de962aab91e4cf5e9f8977a96de9 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Thu, 3 Feb 2005 22:09:49 -0500 Subject: [PATCH] Use inline instead of __inline__ in the blkid debugging code for Solaris compatibility. --- lib/blkid/blkidP.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/blkid/blkidP.h b/lib/blkid/blkidP.h index db23c2b5e..1bb94907e 100644 --- a/lib/blkid/blkidP.h +++ b/lib/blkid/blkidP.h @@ -148,7 +148,7 @@ extern int blkid_debug_mask; #endif #ifdef CONFIG_BLKID_DEBUG -static __inline__ void DEB_DUMP_TAG(int mask, blkid_tag tag) +static inline void DEB_DUMP_TAG(int mask, blkid_tag tag) { if (!(mask & blkid_debug_mask)) return; @@ -161,7 +161,7 @@ static __inline__ void DEB_DUMP_TAG(int mask, blkid_tag tag) printf(" tag: %s=\"%s\"\n", tag->bit_name, tag->bit_val); } -static __inline__ void DEB_DUMP_DEV(int mask, blkid_dev dev) +static inline void DEB_DUMP_DEV(int mask, blkid_dev dev) { struct list_head *p; @@ -186,7 +186,7 @@ static __inline__ void DEB_DUMP_DEV(int mask, blkid_dev dev) printf("\n"); } -static __inline__ void DEB_DUMP_CACHE(int mask, blkid_cache cache) +static inline void DEB_DUMP_CACHE(int mask, blkid_cache cache) { struct list_head *p; -- 2.47.3