mirror of
https://git.proxmox.com/git/grub2
synced 2025-07-27 09:39:58 +00:00
2010-01-17 Carles Pina i Estany <carles@pina.cat>
* util/misc.c (grub_util_info): Fix the order of the parameters in a fprintf call.
This commit is contained in:
parent
e15c215ebd
commit
ea379330f9
@ -1,3 +1,8 @@
|
||||
2010-01-17 Carles Pina i Estany <carles@pina.cat>
|
||||
|
||||
* util/misc.c (grub_util_info): Fix the order of the parameters in a
|
||||
fprintf call.
|
||||
|
||||
2010-01-16 Grégoire Sutre <gregoire.sutre@gmail.com>
|
||||
|
||||
* genmk.rb (class SCRIPT): Replace option -i of sed by a pipe.
|
||||
|
@ -81,7 +81,7 @@ grub_util_info (const char *fmt, ...)
|
||||
va_start (ap, fmt);
|
||||
vfprintf (stderr, fmt, ap);
|
||||
va_end (ap);
|
||||
fprintf (".\n", stderr);
|
||||
fprintf (stderr, ".\n");
|
||||
fflush (stderr);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user