style fix - saait - the most boring static page generator
(HTM) git clone git://git.codemadness.org/saait
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 51c0c162ec51ad219acaf97e4f7b8b93023fa262
(DIR) parent be11bd1dda2a883fc861f6147167a3477b636fe7
(HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Tue, 29 Oct 2019 18:31:18 +0100
style fix
Diffstat:
M saait.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/saait.c b/saait.c
@@ -291,7 +291,7 @@ void
xmlencode(const char *s, FILE *fp)
{
for (; *s; s++) {
- switch(*s) {
+ switch (*s) {
case '<': fputs("<", fp); break;
case '>': fputs(">", fp); break;
case '\'': fputs("'", fp); break;