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
2 changed files with 6 additions and 1 deletions
|
@ -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>
|
2010-01-16 Grégoire Sutre <gregoire.sutre@gmail.com>
|
||||||
|
|
||||||
* genmk.rb (class SCRIPT): Replace option -i of sed by a pipe.
|
* 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);
|
va_start (ap, fmt);
|
||||||
vfprintf (stderr, fmt, ap);
|
vfprintf (stderr, fmt, ap);
|
||||||
va_end (ap);
|
va_end (ap);
|
||||||
fprintf (".\n", stderr);
|
fprintf (stderr, ".\n");
|
||||||
fflush (stderr);
|
fflush (stderr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue