From: Jérémie Galarneau Date: Tue, 11 Aug 2020 16:22:19 +0000 (-0400) Subject: Clean-up: time: change space to tabs X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=commitdiff_plain;h=5e5af4be7ee46668600e4cf72d5ac85a19d8ecd4 Clean-up: time: change space to tabs Signed-off-by: Jérémie Galarneau Change-Id: I922111fab4667a5af35ed45d9bbdee0bcb477b05 --- 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");