summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2019-04-24 00:19:42 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2019-04-25 19:53:38 +0200
commit068a4dec639ab6a9b270785d605bef4b0abcec91 (patch)
tree36c3efdb77d4e4d6cf2cdcd79fed37a46c4f08b8 /util.c
parent9dab5d44d3ede9e9941590be7e0d77665a63156a (diff)
util: small code-style fix
Diffstat (limited to 'util.c')
-rw-r--r--util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util.c b/util.c
index 48d01bb..15e15e0 100644
--- a/util.c
+++ b/util.c
@@ -226,8 +226,8 @@ strtotime(const char *s, time_t *t)
void
xmlencode(const char *s, FILE *fp)
{
- for (; *s; s++) {
- switch(*s) {
+ for (; *s; ++s) {
+ switch (*s) {
case '<': fputs("&lt;", fp); break;
case '>': fputs("&gt;", fp); break;
case '\'': fputs("&#39;", fp); break;