svn commit: trunk/busybox/shell
vda at busybox.net
vda at busybox.net
Wed May 16 15:05:37 UTC 2007
Author: vda
Date: 2007-05-16 08:05:36 -0700 (Wed, 16 May 2007)
New Revision: 18636
Log:
hush: another microscopic typo fix
Modified:
trunk/busybox/shell/hush.c
Changeset:
Modified: trunk/busybox/shell/hush.c
===================================================================
--- trunk/busybox/shell/hush.c 2007-05-16 12:57:12 UTC (rev 18635)
+++ trunk/busybox/shell/hush.c 2007-05-16 15:05:36 UTC (rev 18636)
@@ -980,7 +980,7 @@
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;
More information about the busybox-cvs
mailing list