diff options
Diffstat (limited to 'src/opendeco-conf.c')
| -rw-r--r-- | src/opendeco-conf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/opendeco-conf.c b/src/opendeco-conf.c index e19440b..6bf960d 100644 --- a/src/opendeco-conf.c +++ b/src/opendeco-conf.c @@ -2,7 +2,6 @@ #include <stdio.h> #include <stdlib.h> -#include <wchar.h> #include <errno.h> #include "opendeco-conf.h" @@ -26,7 +25,7 @@ int opendeco_conf_parse(const char *confpath, struct arguments *arguments) if (!od_conf) return -EINVAL; - fwprintf(stderr, L"Picked up options from %s\n", confpath); + fprintf(stderr, "Picked up options from %s\n", confpath); /* set options in arguments */ toml_table_t *dive = toml_table_in(od_conf, "dive"); |