summaryrefslogtreecommitdiff
path: root/sfeed_web.c
diff options
context:
space:
mode:
Diffstat (limited to 'sfeed_web.c')
-rw-r--r--sfeed_web.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfeed_web.c b/sfeed_web.c
index bb7d9b6..5c5301e 100644
--- a/sfeed_web.c
+++ b/sfeed_web.c
@@ -22,7 +22,7 @@ static void
printfeedtype(const char *s, FILE *fp)
{
for (; *s; s++)
- if (!isspace((int)*s))
+ if (!isspace((unsigned char)*s))
fputc(*s, fp);
}
@@ -49,7 +49,7 @@ xmltagstartparsed(XMLParser *p, const char *tag, size_t taglen, int isshort)
fputs(abslink, stdout);
else
fputs(feedlink, stdout);
- fputc('\t', stdout);
+ putchar('\t');
printfeedtype(feedtype, stdout);
putchar('\n');
found++;