From: Denis Vlasenko Date: Wed, 16 May 2007 15:05:36 +0000 (-0000) Subject: hush: another microscopic typo fix X-Git-Tag: 1_6_0~59 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=831dcc439cdaef1062e09ca9af55f5c931889845;p=oweals%2Fbusybox.git hush: another microscopic typo fix --- diff --git a/shell/hush.c b/shell/hush.c index f55118460..84f2870f2 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -980,7 +980,7 @@ static int b_check_space(o_string *o, int len) static int b_addchr(o_string *o, int ch) { - debug_printf("b_addchr: '%c' o->lengtt=%d o=%p\n", ch, o->length, o); + debug_printf("b_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o); if (b_check_space(o, 1)) return B_NOSPAC; o->data[o->length] = ch;