kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 5fe9512828249d659a08421c3e6dac19e7099782
parent be28c77c6d493c74e87d5a1d05d58cb75a2a1585
Author: Joris Vink <joris@coders.se>
Date:   Thu,  5 May 2016 15:29:43 +0200

spacing.

Diffstat:
src/utils.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/utils.c b/src/utils.c @@ -486,7 +486,7 @@ kore_mem_find(void *src, size_t slen, void *needle, size_t len) { size_t pos; - for(pos = 0; pos < slen; pos++) { + for (pos = 0; pos < slen; pos++) { if ( *((u_int8_t *)src + pos) != *(u_int8_t *)needle) continue;