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:
cjwatson 2009-09-01 16:14:11 +00:00
parent c403a1250d
commit ecb3166a82
2 changed files with 6 additions and 1 deletions

View file

@ -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

View file

@ -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