All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] dl: fix grub_dl_is_persistent() for EMU
@ 2025-07-03  6:09 Gary Lin via Grub-devel
  2025-07-03  7:11 ` Sudhakar Kuppusamy
  0 siblings, 1 reply; 3+ messages in thread
From: Gary Lin via Grub-devel @ 2025-07-03  6:09 UTC (permalink / raw)
  To: The development of GNU GRUB
  Cc: Gary Lin, Daniel Kiper, Daniel Axtens, Sudhakar Kuppusamy

When attempting to build grub-emu, the compilation failed with the
following error message:

include/grub/dl.h: In function ‘grub_dl_is_persistent’:
include/grub/dl.h:262:1: error: no return statement in function returning non-void [-Werror=return-type]

To avoid the erorr, make the function always return 0.

Fixes: ba8eadde6be1 (dl: Provide a fake grub_dl_set_persistent() and grub_dl_is_persistent() for the emu target)

Signed-off-by: Gary Lin <glin@suse.com>
Cc: Daniel Axtens <dja@axtens.net>
Cc: Sudhakar Kuppusamy <sudhakar@linux.ibm.com>
---
 include/grub/dl.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/grub/dl.h b/include/grub/dl.h
index b8135c8f3..53bf9abdb 100644
--- a/include/grub/dl.h
+++ b/include/grub/dl.h
@@ -259,6 +259,7 @@ grub_dl_set_persistent (grub_dl_t mod __attribute__((unused)))
 static inline int
 grub_dl_is_persistent (grub_dl_t mod __attribute__((unused)))
 {
+  return 0;
 }
 #else
 static inline void
-- 
2.43.0


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

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-07-04 13:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-03  6:09 [PATCH] dl: fix grub_dl_is_persistent() for EMU Gary Lin via Grub-devel
2025-07-03  7:11 ` Sudhakar Kuppusamy
2025-07-04 13:53   ` Daniel Kiper via Grub-devel

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.