2007-10-21 Robert Millan <rmh@aybabtu.com>

* util/misc.c (grub_util_info): Call fflush() before returning.
This commit is contained in:
robertmh 2007-10-21 12:29:33 +00:00
parent 54b71c4b7b
commit 2aad70e250
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2007-10-21 Robert Millan <rmh@aybabtu.com>
* util/misc.c (grub_util_info): Call fflush() before returning.
2007-10-20 Robert Millan <rmh@aybabtu.com>
* genmk.rb (Image): Copy `extra_flags' from here ...

View File

@ -53,6 +53,7 @@ grub_util_info (const char *fmt, ...)
vfprintf (stderr, fmt, ap);
va_end (ap);
fputc ('\n', stderr);
fflush (stderr);
}
}