ec4acbbd98
- 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
652 B
Diff
26 lines
652 B
Diff
From 99eebaec7e4c79bae548385de3892af23c28c6ca Mon Sep 17 00:00:00 2001
|
|
From: Peter Jones <pjones@redhat.com>
|
|
Date: Mon, 26 Jun 2017 12:43:22 -0400
|
|
Subject: [PATCH 187/206] don't ignore const
|
|
|
|
---
|
|
grub-core/net/tftp.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/grub-core/net/tftp.c b/grub-core/net/tftp.c
|
|
index dcd82494309..f90071353ad 100644
|
|
--- a/grub-core/net/tftp.c
|
|
+++ b/grub-core/net/tftp.c
|
|
@@ -307,7 +307,7 @@ static void
|
|
grub_normalize_filename (char *normalized, const char *filename)
|
|
{
|
|
char *dest = normalized;
|
|
- char *src = filename;
|
|
+ const char *src = filename;
|
|
|
|
while (*src != '\0')
|
|
{
|
|
--
|
|
2.15.0
|
|
|