SHA256
1
0
forked from pool/elilo
elilo/elilo-avoid-tab.diff

20 lines
457 B
Diff

---
config.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- a/config.c
+++ b/config.c
@@ -909,10 +909,10 @@ print_label_list(VOID)
{
boot_image_t *img, *dfl = global_config.default_image;
- if (dfl) Print(L"\t%s\n", dfl->label);
+ if (dfl) Print(L" %s\n", dfl->label);
for (img = image_list; img; img = img->next) {
- if (img != dfl) Print(L"\t%s\n", img->label);
+ if (img != dfl) Print(L" %s\n", img->label);
}
}