guarded write_banner with NO_UTF8_ENCODING

This commit is contained in:
Charlton, Scott R 2021-08-30 17:46:49 -06:00
parent 082edbb51d
commit 09a2680a6e

View File

@ -286,6 +286,7 @@ write_banner(void)
#ifdef TESTING #ifdef TESTING
return OK; return OK;
#endif #endif
#ifndef NO_UTF8_ENCODING
char buffer[80]; char buffer[80];
int len, indent; int len, indent;
screen_msg( screen_msg(
@ -329,7 +330,7 @@ write_banner(void)
screen_msg( screen_msg(
" █▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█\n\n"); " █▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█\n\n");
#endif
return 0; return 0;
} }