From 991824ab2f570a9fb78b83ec73ecae10b83f9877 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ingo=20B=C3=BCrk?= Date: Sun, 13 Jun 2021 09:38:10 +0200 Subject: [PATCH] Buildfix after merge --- src/config_directives.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config_directives.c b/src/config_directives.c index 9ec52e628..500979392 100644 --- a/src/config_directives.c +++ b/src/config_directives.c @@ -375,14 +375,14 @@ CFGFUN(smart_borders, const char *enable) { if (!strcmp(enable, "no_gaps")) config.smart_borders = SMART_BORDERS_NO_GAPS; else - config.smart_borders = eval_boolstr(enable) ? SMART_BORDERS_ON : SMART_BORDERS_OFF; + config.smart_borders = boolstr(enable) ? SMART_BORDERS_ON : SMART_BORDERS_OFF; } CFGFUN(smart_gaps, const char *enable) { if (!strcmp(enable, "inverse_outer")) config.smart_gaps = SMART_GAPS_INVERSE_OUTER; else - config.smart_gaps = eval_boolstr(enable) ? SMART_GAPS_ON : SMART_GAPS_OFF; + config.smart_gaps = boolstr(enable) ? SMART_GAPS_ON : SMART_GAPS_OFF; } CFGFUN(floating_minimum_size, const long width, const long height) {