talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 24c3e4c3f5d8af1139dc0dac55eee907dd0a72c6
parent ed39558ac116e480cdbe18a6ee6c5602150994cb
Author: Andrej Kacian <ticho@claws-mail.org>
Date:   Sun, 28 Apr 2019 23:22:00 +0200

Remove unnecessary debug output from previous commit

Diffstat:
Msrc/plugins/rssyl/parse822.c | 3---
1 file changed, 0 insertions(+), 3 deletions(-)

diff --git a/src/plugins/rssyl/parse822.c b/src/plugins/rssyl/parse822.c @@ -205,15 +205,12 @@ FeedItem *rssyl_parse_folder_item_file(gchar *path) if( !strcmp(lines[i], RSSYL_TEXT_END) ) { debug_print("RSSyl: Trailing html tag found at line %d\n", i); past_endhtml_tag = TRUE; - i++; continue; } if (body) { - debug_print("appending '%s'\n", lines[i]); body = g_string_append(body, lines[i]); } else { - debug_print("creating new with '%s'\n", lines[i]); body = g_string_new(lines[i]); }