diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2020-04-28 16:09:28 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2020-04-28 16:09:28 +0000 |
commit | 6f63e88c0166ed3e5f2805a9e667c7d24d304cf1 (patch) | |
tree | 1075492a7445e6ed269cdf7aad145c30ae799566 /cddl/contrib/opensolaris/tools/ctf/cvt/util.c | |
parent | 265cef40f059307ab13719266dd83790fa526d29 (diff) | |
download | src-6f63e88c0166ed3e5f2805a9e667c7d24d304cf1.tar.gz src-6f63e88c0166ed3e5f2805a9e667c7d24d304cf1.zip |
ctfmerge: Assert that there is enough room for types.
Sponsord by: Dell EMC
Differential Revision: https://reviews.freebsd.org/D24537
Notes
Notes:
svn path=/head/; revision=360445
Diffstat (limited to 'cddl/contrib/opensolaris/tools/ctf/cvt/util.c')
-rw-r--r-- | cddl/contrib/opensolaris/tools/ctf/cvt/util.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/cddl/contrib/opensolaris/tools/ctf/cvt/util.c b/cddl/contrib/opensolaris/tools/ctf/cvt/util.c index fb76cbaeb422..87f677b7b81a 100644 --- a/cddl/contrib/opensolaris/tools/ctf/cvt/util.c +++ b/cddl/contrib/opensolaris/tools/ctf/cvt/util.c @@ -148,17 +148,7 @@ terminate(const char *format, ...) if (getenv("CTF_ABORT_ON_TERMINATE") != NULL) abort(); -#if defined(__FreeBSD__) -/* - * For the time being just output the termination message, but don't - * return an exit status that would cause the build to fail. We need - * to get as much stuff built as possible before going back and - * figuring out what is wrong with certain files. - */ - exit(0); -#else exit(1); -#endif } /*PRINTFLIKE1*/ |