X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Ftime.c;h=90ce4d4b67694bd046b3ddd589bf27e9644d1231;hp=3a10447e96011e01a9079d9b23d6213af0aebd1b;hb=cfb1c9bcab7801380b6ffbab9e505b861072254c;hpb=ab5be9fa2eb5ba9600a82cd18fd3cfcbac69169a diff --git a/src/common/time.c b/src/common/time.c index 3a10447e9..90ce4d4b6 100644 --- a/src/common/time.c +++ b/src/common/time.c @@ -9,10 +9,10 @@ #include #include #include +#include #include #include #include -#include #include #include #include @@ -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");