[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] generic/blocklist: Fix flag name
From: |
David Michael |
Subject: |
[PATCH] generic/blocklist: Fix flag name |
Date: |
Fri, 05 Jul 2019 07:45:59 -0400 |
Signed-off-by: David Michael <address@hidden>
---
Hi,
I tried to test the new release and hit this build failure:
In file included from ../grub-core/osdep/blocklist.c:6:0:
../grub-core/osdep/generic/blocklist.c: In function
‘grub_install_get_blocklist’:
../grub-core/osdep/generic/blocklist.c:62:67: error: ‘FILE_TYPE_NO_DECOMPRESS’
undeclared (first use in this function); did you mean
‘GRUB_FILE_TYPE_NO_DECOMPRESS’?
file = grub_file_open (core_path_dev, GRUB_FILE_TYPE_NONE |
FILE_TYPE_NO_DECOMPRESS);
^~~~~~~~~~~~~~~~~~~~~~~
GRUB_FILE_TYPE_NO_DECOMPRESS
../grub-core/osdep/generic/blocklist.c:62:67: note: each undeclared identifier
is reported only once for each function it appears in
It seems to be fixed by this change. Can it be applied for the next release?
Thanks.
David
grub-core/osdep/generic/blocklist.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/grub-core/osdep/generic/blocklist.c
b/grub-core/osdep/generic/blocklist.c
index ea2a511b6..2d9040302 100644
--- a/grub-core/osdep/generic/blocklist.c
+++ b/grub-core/osdep/generic/blocklist.c
@@ -59,7 +59,7 @@ grub_install_get_blocklist (grub_device_t root_dev,
grub_disk_cache_invalidate_all ();
- file = grub_file_open (core_path_dev, GRUB_FILE_TYPE_NONE |
FILE_TYPE_NO_DECOMPRESS);
+ file = grub_file_open (core_path_dev, GRUB_FILE_TYPE_NONE |
GRUB_FILE_TYPE_NO_DECOMPRESS);
if (file)
{
if (grub_file_size (file) != core_size)
@@ -116,7 +116,7 @@ grub_install_get_blocklist (grub_device_t root_dev,
grub_file_t file;
/* Now read the core image to determine where the sectors are. */
- file = grub_file_open (core_path_dev, GRUB_FILE_TYPE_NONE |
FILE_TYPE_NO_DECOMPRESS);
+ file = grub_file_open (core_path_dev, GRUB_FILE_TYPE_NONE |
GRUB_FILE_TYPE_NO_DECOMPRESS);
if (! file)
grub_util_error ("%s", grub_errmsg);
--
2.20.1
- [PATCH] generic/blocklist: Fix flag name,
David Michael <=