From de86086adee7bf51f9731b29a6d37c5010128246 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20=C3=89LIE?= Date: Sun, 11 Feb 2024 10:02:23 +0100 Subject: [PATCH] Another signedness to fix With -Wformat-signedness GCC warning. --- backends/ninpaths.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backends/ninpaths.c b/backends/ninpaths.c index 14fa6f08f..438c4a664 100644 --- a/backends/ninpaths.c +++ b/backends/ninpaths.c @@ -289,7 +289,7 @@ readdump(FILE *f) #ifdef DEBUG { time_t st_time = st; - fprintf(stderr, " dumped start %s total=%ld atimes=%ld (%ld)\n", + fprintf(stderr, " dumped start %s total=%ld atimes=%lu (%lu)\n", ctime(&st_time), tot, at, at - st); } #endif