summaryrefslogtreecommitdiffstats
path: root/options.c
diff options
context:
space:
mode:
Diffstat (limited to 'options.c')
-rw-r--r--options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/options.c b/options.c
index 861bd8ac..c13696f4 100644
--- a/options.c
+++ b/options.c
@@ -114,7 +114,7 @@ options_free(struct options *oo)
{
struct options_entry *o, *tmp;
- RB_FOREACH_SAFE (o, options_tree, &oo->tree, tmp)
+ RB_FOREACH_SAFE(o, options_tree, &oo->tree, tmp)
options_remove(o);
free(oo);
}