ソースを参照

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.
Sebastian Hahn 14 年 前
コミット
0f8026ec23
1 ファイル変更2 行追加2 行削除
  1. 2 2
      src/common/util.c

+ 2 - 2
src/common/util.c

@@ -3661,8 +3661,8 @@ tor_get_exit_code(const process_handle_t *process_handle,
     /* Process has not exited */
     /* Process has not exited */
     return PROCESS_EXIT_RUNNING;
     return PROCESS_EXIT_RUNNING;
   } else if (retval != process_handle->pid) {
   } 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;
     return PROCESS_EXIT_ERROR;
   }
   }