diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2013-04-29 16:21:49 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2013-04-29 16:21:49 +0000 |
commit | 117c43f3e67893449b6d95cc09255f192e010138 (patch) | |
tree | 038219e1b68db9a493cd1417a3eff331befb42d5 /src | |
parent | 7aad37490cd854a3a0525b06865e50612a106ac8 (diff) |
Fixed malformed printf.
Diffstat (limited to 'src')
-rw-r--r-- | src/htsback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htsback.c b/src/htsback.c index dc34da1..7c966cd 100644 --- a/src/htsback.c +++ b/src/htsback.c @@ -766,7 +766,7 @@ int back_finalize(httrackp* opt,cache_back* cache,struct_back* sback,int p) { } else { /* Partial file, but marked as "ok" ? */ if (opt->log!=NULL) { - HTS_LOG(opt,LOG_WARNING); fprintf(opt->log,"file not stored in cache due to bogus state (incomplete type caused by %s (%d)): %s%s"LF,back[p].r.msg,back[p].url_adr,back[p].url_fil); + HTS_LOG(opt,LOG_WARNING); fprintf(opt->log,"file not stored in cache due to bogus state (incomplete type caused by %s (%d)): %s%s"LF,back[p].r.msg,back[p].r.statuscode,back[p].url_adr,back[p].url_fil); } } } |