summaryrefslogtreecommitdiff
path: root/lib/openbsd-tree.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/openbsd-tree.h')
-rw-r--r--lib/openbsd-tree.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/openbsd-tree.h b/lib/openbsd-tree.h
index 859f751678..bfa695fcdc 100644
--- a/lib/openbsd-tree.h
+++ b/lib/openbsd-tree.h
@@ -509,7 +509,9 @@ int _rb_check(const struct rb_type *, void *, unsigned long);
return _cmp(l, r); \
} \
static const struct rb_type _name##_RB_INFO = { \
- _name##_RB_COMPARE, _aug, offsetof(struct _type, _field), \
+ _name##_RB_COMPARE, \
+ _aug, \
+ offsetof(struct _type, _field), \
}; \
const struct rb_type *const _name##_RB_TYPE = &_name##_RB_INFO;