summaryrefslogtreecommitdiffstats
path: root/compat
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2019-03-04 00:09:27 +0000
committerRoy Marples <roy@marples.name>2019-03-04 00:09:27 +0000
commit9feb1140417463f0b5f299a04d99e4bc2e0924d4 (patch)
tree55465e5c646ca163e729f095cef722e2097d74dd /compat
parentb41110ab5bfc91d305896c3e60461bdfb7660fd9 (diff)
downloaddhcpcd-9feb1140417463f0b5f299a04d99e4bc2e0924d4.tar.xz
Fix compile.... doh
Diffstat (limited to 'compat')
-rw-r--r--compat/rb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/rb.c b/compat/rb.c
index 2e09af58..9c83e6bc 100644
--- a/compat/rb.c
+++ b/compat/rb.c
@@ -68,7 +68,7 @@ __weak_alias(rb_tree_depths, _rb_tree_depths)
//#endif
#if !defined(__predict_false)
-#if __GNUC_PREREQ__(2, 96) || defined(__lint__))
+#if __GNUC_PREREQ__(2, 96) || defined(__lint__)
#define __predict_true(exp) __builtin_expect((exp) != 0, 1)
#define __predict_false(exp) __builtin_expect((exp) != 0, 0)
#else