j
: Next unread message k
: Previous unread message j a
: Jump to all threads
j l
: Jump to MailingList overview
Author: blueswirl Date: 2009-01-31 14:33:07 +0100 (Sat, 31 Jan 2009) New Revision: 435
Modified: openbios-devel/kernel/bootstrap.c Log: Exit with nonzero status if there are errors
Modified: openbios-devel/kernel/bootstrap.c =================================================================== --- openbios-devel/kernel/bootstrap.c 2009-01-31 13:31:29 UTC (rev 434) +++ openbios-devel/kernel/bootstrap.c 2009-01-31 13:33:07 UTC (rev 435) @@ -1108,5 +1108,9 @@ }
free(ressources); - return 0; + + if (errors) + return 1; + else + return 0; }