Skip to content
Snippets Groups Projects
Commit 5af3ae05 authored by Libreboot project's avatar Libreboot project
Browse files

lbmk: don't use status for unconditional returns


in cases where lbmk must always return from a function,
there are some cases where it relies on non-zero exit
status, which in practise is always the case, but may
change in the future if the relevant part is modified

e.g. do_something && return 0

the proper form is:
do_something
return 0

also do this for unconditional exits

Signed-off-by: default avatarLeah Rowe <leah@libreboot.org>
parent 64f93374
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment