Clean-up: time: change space to tabs
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Tue, 11 Aug 2020 16:22:19 +0000 (12:22 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Tue, 11 Aug 2020 16:23:14 +0000 (12:23 -0400)
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
Change-Id: I922111fab4667a5af35ed45d9bbdee0bcb477b05

src/common/time.c

index 3a10447e96011e01a9079d9b23d6213af0aebd1b..d084a3fddbdb5c462e5246fb83b9c336c4b898e9 100644 (file)
@@ -88,7 +88,7 @@ int time_to_iso8601_str(time_t time, char *str, size_t len)
                goto end;
        }
 
                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");
        if (!tm_result) {
                ret = -1;
                PERROR("Failed to break down timestamp to tm structure");
This page took 0.026392 seconds and 5 git commands to generate.