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 318647945fb62999178e4fb83f1f5cfeb2d55923
parent 8fcf4762f4de4bc6aacd7d2d2780c7c6bda03d74
Author: Joris Vink <joris@coders.se>
Date:   Sat, 13 Feb 2016 15:45:33 +0100

more consistency in fatal messages.

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

diff --git a/src/mem.c b/src/mem.c @@ -92,7 +92,7 @@ kore_calloc(size_t memb, size_t len) if (memb == 0 || len == 0) fatal("kore_calloc(): zero size"); if (SIZE_MAX / memb < len) - fatal("kore_calloc: memb * len > SIZE_MAX"); + fatal("kore_calloc(): memb * len > SIZE_MAX"); return (kore_malloc(memb * len)); }