bug-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] osdep/hurd/getroot: Fix 64bit build


From: Vladimir 'phcoder' Serbinenko
Subject: Re: [PATCH] osdep/hurd/getroot: Fix 64bit build
Date: Sun, 21 Jan 2024 05:22:29 +0300

LGTM
Reviewed-by: Vladimir Serbinenko<phcoder@gmail.com>

Le sam. 20 janv. 2024, 21:36, Samuel Thibault <samuel.thibault@ens-lyon.org> a écrit :
file_get_fs_options takes a mach_msg_type_number_t (32bit), not a size_t
(64bit on 64bit platforms).
---
 grub-core/osdep/hurd/getroot.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/grub-core/osdep/hurd/getroot.c b/grub-core/osdep/hurd/getroot.c
index 0efefdab4..b849700e6 100644
--- a/grub-core/osdep/hurd/getroot.c
+++ b/grub-core/osdep/hurd/getroot.c
@@ -58,7 +58,7 @@ grub_util_find_hurd_root_device (const char *path)
   file_t file;
   error_t err;
   char *argz = NULL, *name = NULL, *ret;
-  size_t argz_len = 0;
+  mach_msg_type_number_t argz_len = 0;
   int i;

   file = file_name_lookup (path, 0, 0);
--
2.43.0


_______________________________________________
Grub-devel mailing list
Grub-devel@gnu.org
https://lists.gnu.org/mailman/listinfo/grub-devel

reply via email to

[Prev in Thread] Current Thread [Next in Thread]