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 61b937ac1b0b89a3bd7de5d29ea41abb9047d284
parent 8d67ee4c5250b1ef904294218c521434a07ad041
Author: Joris Vink <joris@coders.se>
Date:   Sat,  4 May 2013 16:38:40 +0200

remove unused vars

Diffstat:
src/module.c | 2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/src/module.c b/src/module.c @@ -127,7 +127,6 @@ kore_module_handler_new(char *path, char *domain, char *func, int type) void *addr; struct module_domain *dom; struct kore_module_handle *hdlr; - char uri[512]; kore_log("kore_module_handler_new(%s, %s, %s, %d)", path, domain, func, type); @@ -164,7 +163,6 @@ kore_module_handler_new(char *path, char *domain, char *func, int type) void * kore_module_handler_find(char *domain, char *path) { - size_t len; struct module_domain *dom; struct kore_module_handle *hdlr;