Introduction
Introduction Statistics Contact Development Disclaimer Help
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("&lt;", fp); break;
case '>': fputs("&gt;", fp); break;
case '\'': fputs("&#39;", fp); break;
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.