Skip to content

Commit

Permalink
Switch from _Exit() to _exit()
Browse files Browse the repository at this point in the history
Signed-off-by: Quincey Koziol <[email protected]>
  • Loading branch information
qkoziol committed Jan 24, 2025
1 parent 9a92991 commit 3e929ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/tcheck_version.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ parse(int ac, char **av)
H5_ATTR_NORETURN void
abort_intercept(int H5_ATTR_UNUSED sig)
{
_Exit(6);
_exit(6);
}

#ifdef H5_HAVE_WIN32_API
Expand Down

0 comments on commit 3e929ad

Please sign in to comment.