diff options
Diffstat (limited to 'src/opendeco-cli.c')
| -rw-r--r-- | src/opendeco-cli.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/opendeco-cli.c b/src/opendeco-cli.c index e3fd852..bd0ed04 100644 --- a/src/opendeco-cli.c +++ b/src/opendeco-cli.c @@ -3,7 +3,6 @@ #include <argp.h> #include <stdlib.h> #include <string.h> -#include <wchar.h> #include "opendeco-cli.h" @@ -52,17 +51,17 @@ static void print_xxd_arr(char *name, unsigned char *content, unsigned int len) exit(EXIT_FAILURE); } - wprintf(L"--------\n\n"); - wprintf(L"License for: %s\n\n", name); - wprintf(L"%s", tmp); - wprintf(L"\n"); + printf("--------\n\n"); + printf("License for: %s\n\n", name); + printf("%s", tmp); + printf("\n"); free(tmp); } static void print_licenses() { - wprintf(L"THIRD-PARTY LICENSES:\n\n"); + printf("THIRD-PARTY LICENSES:\n\n"); print_xxd_arr("cktan/tomlc99", toml_LICENSE, toml_LICENSE_len); print_xxd_arr("siu/minunit", minunit_LICENSE, minunit_LICENSE_len); } |