diff options
author | Thomas Rooijakkers <thomas.rooijakkers@tno.nl> | 2023-09-19 13:52:36 +0200 |
---|---|---|
committer | Thomas Rooijakkers <thomas.rooijakkers@tno.nl> | 2023-09-19 13:52:36 +0200 |
commit | abbdf1c3ac61322e9fd55a78fbb3ad60c6e68971 (patch) | |
tree | 033ff076a229197e8686decc6d1d4930b82f969e /src | |
parent | 6dc054be0faa2fe934ec24465f75fb8676798d13 (diff) | |
download | afl++-abbdf1c3ac61322e9fd55a78fbb3ad60c6e68971.tar.gz |
Use proper ifdef, remove else in line with other compile options
Diffstat (limited to 'src')
-rw-r--r-- | src/afl-fuzz.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index 9aaec2c7..86c05223 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -381,10 +381,8 @@ static void usage(u8 *argv0, int more_help) { SAYF("Compiled with NO_SPLICING.\n"); #endif -#ifdef NO_UTF +#ifdef FANCY_BOXES_NO_UTF SAYF("Compiled without UTF-8 support for line rendering in status screen.\n"); -#else - SAYF("Compiled with UTF-8 support for line rendering in status screen.\n"); #endif #ifdef PROFILING |