remove new-line from error() calls.
This commit is contained in:
parent
9767be013a
commit
90505d8e5b
2 changed files with 2 additions and 2 deletions
2
dlight.c
2
dlight.c
|
|
@ -28,7 +28,7 @@ static void process_items(rss_t rss, struct target *t) {
|
|||
|
||||
if (http_download_file(item.link, filter->dest) < 0 &&
|
||||
errno != EEXIST) {
|
||||
error("download failed: %s\n", strerror(errno));
|
||||
error("download failed: %s", strerror(errno));
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
Reference in a new issue