Exit with nonzero status if there are errors

git-svn-id: svn://coreboot.org/openbios/openbios-devel@435 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
Blue Swirl
2009-01-31 13:33:07 +00:00
parent cfe6134890
commit c683b2e5bd

View File

@@ -1108,5 +1108,9 @@ int main(int argc, char *argv[])
}
free(ressources);
return 0;
if (errors)
return 1;
else
return 0;
}