summaryrefslogtreecommitdiff
path: root/shell/hush.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-05-16 15:05:36 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-05-16 15:05:36 +0000
commit831dcc439cdaef1062e09ca9af55f5c931889845 (patch)
tree708580049fe715d71040357dded1ba14e82002b9 /shell/hush.c
parentc29903221de5b0c63b79ab40e9dc53f497be24fb (diff)
downloadbusybox-w32-831dcc439cdaef1062e09ca9af55f5c931889845.tar.gz
busybox-w32-831dcc439cdaef1062e09ca9af55f5c931889845.tar.bz2
busybox-w32-831dcc439cdaef1062e09ca9af55f5c931889845.zip
hush: another microscopic typo fix
Diffstat (limited to 'shell/hush.c')
-rw-r--r--shell/hush.c2
1 files changed, 1 insertions, 1 deletions
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)
980 980
981static int b_addchr(o_string *o, int ch) 981static int b_addchr(o_string *o, int ch)
982{ 982{
983 debug_printf("b_addchr: '%c' o->lengtt=%d o=%p\n", ch, o->length, o); 983 debug_printf("b_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
984 if (b_check_space(o, 1)) 984 if (b_check_space(o, 1))
985 return B_NOSPAC; 985 return B_NOSPAC;
986 o->data[o->length] = ch; 986 o->data[o->length] = ch;