diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2018-02-18 14:39:28 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2018-02-18 14:39:28 +0100 |
commit | 13269e18b4c8583e84dc0e78448b939d191b5120 (patch) | |
tree | ed449273c1635c667a61ace7a1f52d712354ce13 | |
parent | 9276032c7b9e27c01ae93ff8e267d7ce4141e41a (diff) |
sfeed_frames: code-style
-rw-r--r-- | sfeed_frames.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sfeed_frames.c b/sfeed_frames.c index 34d6d4e..1d5020c 100644 --- a/sfeed_frames.c +++ b/sfeed_frames.c @@ -217,9 +217,9 @@ printfeed(FILE *fpitems, FILE *fpin, struct feed *f) f->totalnew += isnew; f->total++; - fprintf(fpitems, "%04d-%02d-%02d %02d:%02d ", - tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, - tm->tm_hour, tm->tm_min); + fprintf(fpitems, "%04d-%02d-%02d %02d:%02d ", + tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, + tm->tm_hour, tm->tm_min); if (isnew) fputs("<b><u>", fpitems); |