From: Denys Vlasenko Date: Tue, 11 Dec 2018 20:21:14 +0000 (+0100) Subject: bc: tweak comment X-Git-Tag: 1_30_0~210 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2c6f563216da4fd38626b59cbd01774bbc0e2a71;p=oweals%2Fbusybox.git bc: tweak comment Signed-off-by: Denys Vlasenko --- diff --git a/miscutils/bc.c b/miscutils/bc.c index 9f05cad0c..143bb64b1 100644 --- a/miscutils/bc.c +++ b/miscutils/bc.c @@ -5586,8 +5586,9 @@ static char *bc_program_name(char *code, size_t *bgn) static void bc_program_printString(const char *str) { #if ENABLE_DC - // Huh? Example when this happens? if (!str[0]) { + // Example: echo '[]ap' | dc + // should print two bytes: 0x00, 0x0A bb_putchar('\0'); return; }