mirror of
https://src.fedoraproject.org/rpms/grub2.git
synced 2024-11-28 15:46:53 +00:00
81987f4958
- Try to fix things for new compiler madness. I really don't know why gcc decided __attribute__((packed)) on a "typedef struct" should imply __attribute__((align (1))) and that it should have a warning that it does so. The obvious behavior would be to keep the alignment of the first element unless it's used in another object or type that /also/ hask the packed attribute. Why should it change the default alignment at all? - Merge in the BLS patches Javier and I wrote. - Attempt to fix pmtimer initialization failures to not be super duper slow. Signed-off-by: Peter Jones <pjones@redhat.com>
26 lines
827 B
Diff
26 lines
827 B
Diff
From a67be6e17cd318ad3d4a669efb2b8c5f6e76c003 Mon Sep 17 00:00:00 2001
|
|
From: William Jon McCann <william.jon.mccann@gmail.com>
|
|
Date: Fri, 7 Jun 2013 14:30:55 -0400
|
|
Subject: [PATCH 096/206] Indent menu entries
|
|
|
|
---
|
|
grub-core/normal/menu_text.c | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/grub-core/normal/menu_text.c b/grub-core/normal/menu_text.c
|
|
index 1062d64ee29..ecc60f99fc3 100644
|
|
--- a/grub-core/normal/menu_text.c
|
|
+++ b/grub-core/normal/menu_text.c
|
|
@@ -239,7 +239,8 @@ print_entry (int y, int highlight, grub_menu_entry_t entry,
|
|
unicode_title[i] = ' ';
|
|
|
|
if (data->geo.num_entries > 1)
|
|
- grub_putcode (' ', data->term);
|
|
+ for (i = 0; i < STANDARD_MARGIN; i++)
|
|
+ grub_putcode (' ', data->term);
|
|
|
|
grub_print_ucs4_menu (unicode_title,
|
|
unicode_title + len,
|
|
--
|
|
2.15.0
|
|
|