2009-09-01 Colin Watson <cjwatson@ubuntu.com>
* script/lua/grub_lua.h (fputs): Supply a format string as the first argument to grub_printf.
This commit is contained in:
parent
c403a1250d
commit
ecb3166a82
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2009-09-01 Colin Watson <cjwatson@ubuntu.com>
|
||||
|
||||
* script/lua/grub_lua.h (fputs): Supply a format string as the first
|
||||
argument to grub_printf.
|
||||
|
||||
2009-09-01 Felix Zielcke <fzielcke@z-51.de>
|
||||
|
||||
* genmk.rb: Add quotes around $(TARGET_OBJ2ELF) to cope with
|
||||
|
|
|
@ -58,7 +58,7 @@
|
|||
#define setjmp grub_setjmp
|
||||
#define longjmp grub_longjmp
|
||||
|
||||
#define fputs(s,f) grub_printf(s)
|
||||
#define fputs(s,f) grub_printf("%s", s)
|
||||
|
||||
#define isdigit grub_isdigit
|
||||
#define isalpha grub_isalpha
|
||||
|
|
Loading…
Reference in a new issue