hush: another microscopic typo fix
authorDenis Vlasenko <vda.linux@googlemail.com>
Wed, 16 May 2007 15:05:36 +0000 (15:05 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Wed, 16 May 2007 15:05:36 +0000 (15:05 -0000)
shell/hush.c

index f551184602b55363831b2c1f97b11492709c169a..84f2870f25d726e44dc090996c85b76ff402d1b9 100644 (file)
@@ -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;