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 7aa17df4a1fe90e08ddcf9800544035a682022e0
parent 4d184e00debae2d6cd150bc3b879cf654401540f
Author: Joris Vink <joris@coders.se>
Date:   Sat, 22 Dec 2018 10:52:57 +0100

make ACCESSLOG_* unsigned

Diffstat:
include/kore/kore.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/kore/kore.h b/include/kore/kore.h @@ -373,8 +373,8 @@ struct kore_module_handle { * logs when it reached at least 75% of that or if its been > 1 second since * it was last synced. */ -#define KORE_ACCESSLOG_BUFLEN 131072 -#define KORE_ACCESSLOG_SYNC 98304 +#define KORE_ACCESSLOG_BUFLEN 131072U +#define KORE_ACCESSLOG_SYNC 98304U struct kore_alog_header { u_int16_t domain;