diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2018-08-23 13:59:37 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2018-08-23 13:59:37 +0200 |
commit | 663b4a4e04b5cd4d54704c2feedac4ded122abc1 (patch) | |
tree | 127da0e6e566fce84408f03d971e3bd639edcd92 | |
parent | 8d307aafe680b698d14e501d518bb49363c86d22 (diff) |
sfeed_twtxt: slightly nicer output
-rw-r--r-- | sfeed_twtxt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfeed_twtxt.c b/sfeed_twtxt.c index 776811f..1d9d920 100644 --- a/sfeed_twtxt.c +++ b/sfeed_twtxt.c @@ -37,7 +37,7 @@ printfeed(FILE *fp, const char *feedname) printf("[%s] ", feedname); fputs(fields[FieldTitle], stdout); if (fields[FieldLink][0]) { - fputs(" ", stdout); + fputs(": ", stdout); fputs(fields[FieldLink], stdout); } putchar('\n'); |