* grub-core/loader/i386/xnu.c (grub_cmd_devprop_load): Fix error

message.
	* grub-core/video/radeon_fuloong2e.c
	(grub_video_radeon_fuloong2e_setup): Likewise.
	* grub-core/video/sis315pro.c (grub_video_sis315pro_setup): Likewise.
	* grub-core/video/video.c (grub_video_set_mode): Don't override
	standard out of memory message.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2012-02-03 12:47:07 +01:00
parent dc87d45a7a
commit c779226e6c
5 changed files with 14 additions and 5 deletions

View file

@ -98,7 +98,7 @@ grub_video_radeon_fuloong2e_setup (unsigned int width, unsigned int height,
if ((width != 640 && width != 0) || (height != 480 && height != 0)
|| (depth != 16 && depth != 0))
return grub_error (GRUB_ERR_NOT_IMPLEMENTED_YET,
"Only 1024x600x16 is supported");
"Only 640x480x16 is supported");
grub_pci_iterate (find_card);
if (!found)