Skip to content

Commit

Permalink
test-sbat: Fix exit code
Browse files Browse the repository at this point in the history
Fix the `main` function in `test-sbat.c` to return the `status` variable
like the other `test-*.c` files.

Signed-off-by: Nicholas Bishop <[email protected]>
  • Loading branch information
nicholasbishop authored and vathpela committed May 2, 2023
1 parent 102a658 commit aae3df0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test-sbat.c
Original file line number Diff line number Diff line change
Expand Up @@ -1187,7 +1187,7 @@ main(void)

test(test_sbat_var_asciz);

return 0;
return status;
}

// vim:fenc=utf-8:tw=75:noet

0 comments on commit aae3df0

Please sign in to comment.