* grub-core/kern/misc.c (grub_real_dprintf): Always refresh after

dprintf.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2010-08-29 17:17:52 +02:00
parent a7363f53c8
commit 3626810e53
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2010-08-29 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/kern/misc.c (grub_real_dprintf): Always refresh after
dprintf.
2010-08-29 BVK Chaitanya <bvk.groups@gmail.com>
* Makefile.util.def: Use ldadd instead of ldflags for libraries.

View File

@ -184,6 +184,7 @@ grub_real_dprintf (const char *file, const int line, const char *condition,
va_start (args, fmt);
grub_vprintf (fmt, args);
va_end (args);
grub_refresh ();
}
}