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 139348c2b7ca4f383515cfed1c5e34e05ccd3437
parent a2d312d0a06f9e7c6e2aec4988809bfab3176e70
Author: Joris Vink <joris@coders.se>
Date:   Fri, 19 Aug 2022 17:00:33 +0200

change PRI_TIME_T to ldd on BSD platforms

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

diff --git a/src/cli.c b/src/cli.c @@ -48,7 +48,7 @@ #if defined(OpenBSD) || defined(__FreeBSD_version) || \ defined(NetBSD) || defined(__DragonFly_version) -#define PRI_TIME_T "d" +#define PRI_TIME_T "lld" #endif #if defined(__linux__)