saait

Simple static page generator
git clone https://git.sinitax.com/codemadness/saait
Log | Files | Refs | README | LICENSE | Upstream | sfeed.txt

commit 51c0c162ec51ad219acaf97e4f7b8b93023fa262
parent be11bd1dda2a883fc861f6147167a3477b636fe7
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Tue, 29 Oct 2019 18:31:18 +0100

style fix

Diffstat:
Msaait.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("&lt;", fp); break; case '>': fputs("&gt;", fp); break; case '\'': fputs("&#39;", fp); break;