From 139348c2b7ca4f383515cfed1c5e34e05ccd3437 Mon Sep 17 00:00:00 2001 From: Joris Vink Date: Fri, 19 Aug 2022 17:00:33 +0200 Subject: [PATCH] change PRI_TIME_T to ldd on BSD platforms --- src/cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.c b/src/cli.c index a47bb93..4c86a78 100644 --- 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__)