kernel: event notifier: kernel-ctl interface
[lttng-tools.git] / src / common / time.c
index 3a10447e96011e01a9079d9b23d6213af0aebd1b..90ce4d4b67694bd046b3ddd589bf27e9644d1231 100644 (file)
@@ -9,10 +9,10 @@
 #include <common/error.h>
 #include <common/macros.h>
 #include <common/error.h>
+#include <common/compat/errno.h>
 #include <stddef.h>
 #include <stdint.h>
 #include <limits.h>
-#include <errno.h>
 #include <pthread.h>
 #include <locale.h>
 #include <string.h>
@@ -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");
This page took 0.023207 seconds and 4 git commands to generate.