Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
download: compilation fixes
  • Loading branch information
perexg committed Nov 12, 2015
1 parent 91b1538 commit f815be1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/download.c
Expand Up @@ -232,7 +232,7 @@ download_pipe(download_t *dn, const char *args)
/* Arguments */
if (spawn_parse_args(&argv, 64, args, NULL)) {
tvherror(dn->log, "pipe: unable to parse arguments (%s)", args);
return NULL;
return -1;
}

/* Grab */
Expand All @@ -243,7 +243,7 @@ download_pipe(download_t *dn, const char *args)
if (r < 0) {
dn->pipe_fd = -1;
dn->pipe_pid = 0;
tvherror(LOG_ERR, dn->log, "pipe: cannot start (%s)", args);
tvherror(dn->log, "pipe: cannot start (%s)", args);
return -1;
}

Expand Down

0 comments on commit f815be1

Please sign in to comment.