diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-07-28 10:47:46 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-07-28 10:47:46 -0400 |
commit | 94bff894f9e127888f15ec2333f86d0388e4da7d (patch) | |
tree | aa46d8004f3b51ef99484ac8ade17f78ce418ac3 /src/common/util.c | |
parent | c1bfa65211257e5efb89c5ebc534339d52fa77c4 (diff) | |
download | tor-94bff894f9e127888f15ec2333f86d0388e4da7d.tar.gz tor-94bff894f9e127888f15ec2333f86d0388e4da7d.zip |
Fix a large pile of solaris warnings for bug 19767.
In nearly all cases, this is a matter of making sure that we include
orconfig.h before we include any standard c headers.
Diffstat (limited to 'src/common/util.c')
-rw-r--r-- | src/common/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/util.c b/src/common/util.c index f3effe0957..a100f375c3 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -4548,13 +4548,13 @@ tor_get_exit_code(process_handle_t *process_handle, return PROCESS_EXIT_RUNNING; } else if (retval != process_handle->pid) { log_warn(LD_GENERAL, "waitpid() failed for PID %d: %s", - process_handle->pid, strerror(errno)); + (int)process_handle->pid, strerror(errno)); return PROCESS_EXIT_ERROR; } if (!WIFEXITED(stat_loc)) { log_warn(LD_GENERAL, "Process %d did not exit normally", - process_handle->pid); + (int)process_handle->pid); return PROCESS_EXIT_ERROR; } |