avoid C compiler warniing when not MZ_PRECISE_RETURN_SPEC

Follow-up to 3a512a2a60, where we need a `return` statement
back to avoid a wanring from some compilers.
This commit is contained in:
Matthew Flatt 2019-09-22 17:51:10 -06:00
parent 5fea629cea
commit 00969092c8

View File

@ -4565,6 +4565,9 @@ static MZ_NORETURN void *do_raise_inside_barrier(void)
/* return from uncaught-exception handler */ /* return from uncaught-exception handler */
p[0] = scheme_false; p[0] = scheme_false;
nested_exn_handler(scheme_make_pair(scheme_false, arg), 1, p); nested_exn_handler(scheme_make_pair(scheme_false, arg), 1, p);
#ifndef MZ_PRECISE_RETURN_SPEC
return NULL;
#endif
} }
} }
} }