Fixes some missing tabs.
They unintentionally disappeared in 1.3.2.
This commit is contained in:
parent
a209d5d8e1
commit
a52d52fa91
1 changed files with 5 additions and 5 deletions
|
@ -457,11 +457,11 @@ static inline void
|
||||||
ea_show_int_set(struct cli *c, struct adata *ad, int way, byte *pos, byte *buf, byte *end)
|
ea_show_int_set(struct cli *c, struct adata *ad, int way, byte *pos, byte *buf, byte *end)
|
||||||
{
|
{
|
||||||
int i = int_set_format(ad, way, 0, pos, end - pos);
|
int i = int_set_format(ad, way, 0, pos, end - pos);
|
||||||
cli_printf(c, -1012, "%s", buf);
|
cli_printf(c, -1012, "\t%s", buf);
|
||||||
while (i)
|
while (i)
|
||||||
{
|
{
|
||||||
i = int_set_format(ad, way, i, buf, end - buf - 1);
|
i = int_set_format(ad, way, i, buf, end - buf - 1);
|
||||||
cli_printf(c, -1012, "\t%s", buf);
|
cli_printf(c, -1012, "\t\t%s", buf);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -469,11 +469,11 @@ static inline void
|
||||||
ea_show_ec_set(struct cli *c, struct adata *ad, byte *pos, byte *buf, byte *end)
|
ea_show_ec_set(struct cli *c, struct adata *ad, byte *pos, byte *buf, byte *end)
|
||||||
{
|
{
|
||||||
int i = ec_set_format(ad, 0, pos, end - pos);
|
int i = ec_set_format(ad, 0, pos, end - pos);
|
||||||
cli_printf(c, -1012, "%s", buf);
|
cli_printf(c, -1012, "\t%s", buf);
|
||||||
while (i)
|
while (i)
|
||||||
{
|
{
|
||||||
i = ec_set_format(ad, i, buf, end - buf - 1);
|
i = ec_set_format(ad, i, buf, end - buf - 1);
|
||||||
cli_printf(c, -1012, "\t%s", buf);
|
cli_printf(c, -1012, "\t\t%s", buf);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -543,7 +543,7 @@ ea_show(struct cli *c, eattr *e)
|
||||||
bsprintf(pos, "<type %02x>", e->type);
|
bsprintf(pos, "<type %02x>", e->type);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
cli_printf(c, -1012, "%s", buf);
|
cli_printf(c, -1012, "\t%s", buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue