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:
carles 2010-01-17 14:42:19 +00:00
parent e15c215ebd
commit ea379330f9
2 changed files with 6 additions and 1 deletions

View file

@ -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.

View file

@ -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);
}
}