aboutsummaryrefslogtreecommitdiff
path: root/lib/libufs/libufs.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libufs/libufs.h')
-rw-r--r--lib/libufs/libufs.h52
1 files changed, 24 insertions, 28 deletions
diff --git a/lib/libufs/libufs.h b/lib/libufs/libufs.h
index c3541a0c8e6b..a16d82b604ad 100644
--- a/lib/libufs/libufs.h
+++ b/lib/libufs/libufs.h
@@ -31,34 +31,6 @@
#define __LIBUFS_H__
/*
- * libufs macros (internal, non-exported).
- */
-#ifdef _LIBUFS
-#ifdef _LIBUFS_DEBUGGING
-/*
- * Trace steps through libufs, to be used at entry and erroneous return.
- */
-#define ERROR(uufsd, str) \
-do { \
- fprintf(stderr, "libufs in %s", __func__); \
- if (str != NULL) \
- fprintf(stderr, ": %s", str); \
- if (errno) \
- fprintf(stderr, ": %s", strerror(errno)); \
- fprintf(stderr, "\n"); \
- if ((uufsd) != NULL) \
- (uufsd)->d_error = str; \
-} while (0)
-#else /* _LIBUFS_DEBUGGING */
-#define ERROR(uufsd, str) \
-do { \
- if ((uufsd) != NULL) \
- (uufsd)->d_error = str; \
-} while (0)
-#endif /* _LIBUFS_DEBUGGING */
-#endif /* _LIBUFS */
-
-/*
* libufs structures.
*/
@@ -94,6 +66,30 @@ struct uufsd {
#define d_cg d_cgunion.d_cg
};
+/*
+ * libufs macros (internal, non-exported).
+ */
+#ifdef _LIBUFS
+/*
+ * Trace steps through libufs, to be used at entry and erroneous return.
+ */
+static inline void
+ERROR(struct uufsd *u, const char *str)
+{
+
+#ifdef _LIBUFS_DEBUGGING
+ if (str != NULL) {
+ fprintf(stderr, "libufs: %s", str);
+ if (errno != 0)
+ fprintf(stderr, ": %s", strerror(errno));
+ fprintf(stderr, "\n");
+ }
+#endif
+ if (u != NULL)
+ u->d_error = str;
+}
+#endif /* _LIBUFS */
+
__BEGIN_DECLS
/*