Archived
1
0
Fork 0

remove new-line from error() calls.

This commit is contained in:
Henrik Hautakoski 2011-09-06 20:10:26 +02:00
parent 9767be013a
commit 90505d8e5b
2 changed files with 2 additions and 2 deletions

View file

@ -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;
}