From 5e5af4be7ee46668600e4cf72d5ac85a19d8ecd4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Tue, 11 Aug 2020 12:22:19 -0400 Subject: [PATCH] Clean-up: time: change space to tabs MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémie Galarneau Change-Id: I922111fab4667a5af35ed45d9bbdee0bcb477b05 --- src/common/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/time.c b/src/common/time.c index 3a10447e9..d084a3fdd 100644 --- a/src/common/time.c +++ b/src/common/time.c @@ -88,7 +88,7 @@ int time_to_iso8601_str(time_t time, char *str, size_t len) goto end; } - tm_result = localtime_r(&time, &tm_storage); + tm_result = localtime_r(&time, &tm_storage); if (!tm_result) { ret = -1; PERROR("Failed to break down timestamp to tm structure"); -- 2.34.1