forked from pool/elilo
163b743a22
Accepted submit request 56257 from user coolo OBS-URL: https://build.opensuse.org/request/show/56257 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/elilo?expand=0&rev=18
20 lines
457 B
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);
|
|
}
|
|
}
|
|
|