about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--safe_u8putstr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/safe_u8putstr.c b/safe_u8putstr.c
index 54cd231..6696545 100644
--- a/safe_u8putstr.c
+++ b/safe_u8putstr.c
@@ -34,7 +34,7 @@ safe_u8putstr(char *s0, size_t l, FILE *stream)
 				fputc(0xc0 | (*s >> 6), stream);
 				fputc(0x80 | (*s & 0x3f), stream);
 			}
-		} else if (c < 32 && 
+		} else if (c < 32 &&
 		    *s != ' ' && *s != '\t' && *s != '\n' && *s != '\r') {
 			// NUL
 			if (l == 0)