]> git.ozlabs.org Git - petitboot/blobdiff - lib/system/system.c
lib/process: replace pb_run_cmd_pipe
[petitboot] / lib / system / system.c
index dbdef46bdd9da775a8f02955df27d1325a49b8d5..ff4ae991221a9db0630a446194bbaed5f5cef3ab 100644 (file)
@@ -108,7 +108,6 @@ int pb_rmdir_recursive(const char *base, const char *dir)
  * @wait: Wait for the child process to complete before returning.
  * @dry_run: Don't actually fork and exec.
  */
-
 int pb_run_cmd(const char *const *cmd_argv, int wait, int dry_run)
 {
 #if defined(DEBUG)
@@ -143,6 +142,7 @@ int pb_run_cmd(const char *const *cmd_argv, int wait, int dry_run)
                return -1;
        }
 
+
        if (pid == 0) {
                int log = fileno(pb_log_get_stream());
 
@@ -150,7 +150,6 @@ int pb_run_cmd(const char *const *cmd_argv, int wait, int dry_run)
 
                status = dup2(log, STDOUT_FILENO);
                assert(status != -1);
-
                status = dup2(log, STDERR_FILENO);
                assert(status != -1);