return GRUB_ERR_NONE instead of setting grub_errno
This commit is contained in:
parent
1c95b6d2bf
commit
af4e4a875a
1 changed files with 1 additions and 3 deletions
|
@ -1235,9 +1235,7 @@ grub_gfxterm_background_color_cmd (grub_command_t cmd __attribute__ ((unused)),
|
|||
/* Mark whole screen as dirty. */
|
||||
dirty_region_add (0, 0, window.width, window.height);
|
||||
|
||||
/* All was ok. */
|
||||
grub_errno = GRUB_ERR_NONE;
|
||||
return grub_errno;
|
||||
return GRUB_ERR_NONE;
|
||||
}
|
||||
|
||||
static struct grub_term_output grub_video_term =
|
||||
|
|
Loading…
Reference in a new issue