summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sfeed_frames.c2
-rw-r--r--sfeed_html.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sfeed_frames.c b/sfeed_frames.c
index 9689e66..7bcd061 100644
--- a/sfeed_frames.c
+++ b/sfeed_frames.c
@@ -212,7 +212,7 @@ main(int argc, char *argv[])
if (f->totalnew > 0)
fputs("<b><u>", fpmenu);
printxmlencoded(f->name, fpmenu);
- fprintf(fpmenu, "(%lu)", f->totalnew);
+ fprintf(fpmenu, " (%lu)", f->totalnew);
if (f->totalnew > 0)
fputs("</u></b>", fpmenu);
fputs("</a><br/>\n", fpmenu);
diff --git a/sfeed_html.c b/sfeed_html.c
index 771f849..707f341 100644
--- a/sfeed_html.c
+++ b/sfeed_html.c
@@ -130,7 +130,7 @@ main(int argc, char *argv[])
if (f->totalnew > 0)
fputs("<b><u>", stdout);
printxmlencoded(f->name, stdout);
- fprintf(stdout, "(%lu)", f->totalnew);
+ fprintf(stdout, " (%lu)", f->totalnew);
if (f->totalnew > 0)
fputs("</u></b>", stdout);
fputs("</a></li>\n", stdout);