diff options
Diffstat (limited to 'config/config.c')
-rw-r--r-- | config/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/config.c b/config/config.c index 7bf5e4179..65ef67987 100644 --- a/config/config.c +++ b/config/config.c @@ -130,7 +130,7 @@ add_option(InputOption **options, const char *key, const char *value) for (; *options; options = &(*options)->next) ; - *options = xcalloc(sizeof(**options), 1); + *options = calloc(sizeof(**options), 1); if (!*options) /* Yeesh. */ return; (*options)->key = xstrdup(key); |