Revert "[libc] Enable -Wconversion for tests. (#127523)"

This reverts commit 1e6e845d49 because it
changed the 1st parameter of adjust() to be unsigned, but libc itself
calls adjust() with a negative argument in align_backward() in
op_generic.h.
This commit is contained in:
Augie Fackler
2025-03-05 13:52:31 -05:00
parent 46236f4c3d
commit da61b0ddc5
47 changed files with 183 additions and 245 deletions

View File

@@ -34,7 +34,7 @@ int ProcessStatus::get_fatal_signal() {
return WTERMSIG(platform_defined);
}
ProcessStatus invoke_in_subprocess(FunctionCaller *func, int timeout_ms) {
ProcessStatus invoke_in_subprocess(FunctionCaller *func, unsigned timeout_ms) {
int pipe_fds[2];
if (::pipe(pipe_fds) == -1) {
delete func;