mirror of
https://git.proxmox.com/git/grub2
synced 2025-11-03 18:58:18 +00:00
yylex: Explicilty cast fprintf to void.
It's needed to avoid warning on recent GCC. Bug-Debian: https://bugs.debian.org/890431 Last-Update: 2018-02-16 Patch-Name: fix-yylex-build.patch
This commit is contained in:
parent
b2605b329b
commit
14c4f88437
@ -91,7 +91,7 @@ typedef size_t yy_size_t;
|
||||
#define stdin 0
|
||||
#define stdout 0
|
||||
|
||||
#define fprintf(...) 0
|
||||
#define fprintf(...) (void)0
|
||||
#define exit(...) grub_fatal("fatal error in lexer")
|
||||
#endif
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user