diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2011-12-08 08:47:09 +0100 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2011-12-08 08:47:09 +0100 |
commit | 0f8026ec2359a754550190947138b9168671949e (patch) | |
tree | c6f017f9b0b781a017554fb5e8ea847ddf730639 /src/common/util.c | |
parent | 71ecfaa52ff4cd0d71171fea1b68f663114580a8 (diff) | |
download | tor-0f8026ec2359a754550190947138b9168671949e.tar tor-0f8026ec2359a754550190947138b9168671949e.tar.gz |
Some more check-spaces stuff
This re-applies a check-spaces fix that was part of
7920ea55b8d994268d2b07f27316b0f34d8f27e5 and got reverted along with the
rest of that commit in df1f72329acf5f555618a5309f2621e584c0d763.
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 a59cab0bb..6d488d996 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -3661,8 +3661,8 @@ tor_get_exit_code(const process_handle_t *process_handle, /* Process has not exited */ 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)); + log_warn(LD_GENERAL, "waitpid() failed for PID %d: %s", + process_handle->pid, strerror(errno)); return PROCESS_EXIT_ERROR; } |