Use fprintf(stderr, ...) in library

Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com>
Acked-by: Stefan Reinauer <stefan.reinauer@coreboot.org>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6359 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Patrick Georgi
2011-02-14 19:26:22 +00:00
committed by Patrick Georgi
parent cd913bdf5c
commit b912289573
2 changed files with 3 additions and 2 deletions

View File

@ -109,7 +109,7 @@ u8 hex2bin(u8 h)
*/
void fatal(const char *msg)
{
printf("%s",msg);
fprintf(stderr, "%s",msg);
halt();
}