style fix - saait - the most boring static page generator | |
git clone git://git.codemadness.org/saait | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 51c0c162ec51ad219acaf97e4f7b8b93023fa262 | |
parent be11bd1dda2a883fc861f6147167a3477b636fe7 | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Tue, 29 Oct 2019 18:31:18 +0100 | |
style fix | |
Diffstat: | |
M saait.c | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
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; |