From db6939fdc5dc050a03a74af20bcdbaaa33c9a3c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Tue, 30 Jul 2019 22:03:07 +0200 Subject: [PATCH] config: remove commented out code --- config.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/config.c b/config.c index 08156d16..5ed2308b 100644 --- a/config.c +++ b/config.c @@ -147,8 +147,6 @@ parse_section_main(const char *key, const char *value, struct config *conf, } else if (strcmp(key, "font") == 0) { - //free(conf->font); - //conf->font = strdup(value); char *copy = strdup(value); for (const char *font = strtok(copy, ","); font != NULL; font = strtok(NULL, ",")) tll_push_back(conf->fonts, strdup(font));