From c0f86d66f3f6b561528e7f856f9926bec766c036 Mon Sep 17 00:00:00 2001 From: Jan Janssen Date: Mon, 29 Aug 2022 13:07:11 +0200 Subject: tree-wide: Use correct format specifiers gcc will complain about all these with -Wformat-signedness. --- src/core/service.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/service.c') diff --git a/src/core/service.c b/src/core/service.c index fa37207dcc..4933163b56 100644 --- a/src/core/service.c +++ b/src/core/service.c @@ -496,7 +496,7 @@ static int service_add_fd_store_set(Service *s, FDSet *fds, const char *name, bo if (r < 0) return log_unit_error_errno(UNIT(s), r, "Failed to add fd to store: %m"); if (r > 0) - log_unit_debug(UNIT(s), "Added fd %u (%s) to fd store.", fd, strna(name)); + log_unit_debug(UNIT(s), "Added fd %i (%s) to fd store.", fd, strna(name)); fd = -1; } -- cgit v1.2.1