From 244dd88098f6634d07a0b485fe28749001c254c0 Mon Sep 17 00:00:00 2001 From: Nik Date: Wed, 7 Sep 2022 14:21:53 +0200 Subject: [PATCH] includes/type: Fixed time_t format function --- includes/type/time.pat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/type/time.pat b/includes/type/time.pat index 82684bf..967fac6 100644 --- a/includes/type/time.pat +++ b/includes/type/time.pat @@ -10,7 +10,7 @@ namespace type { namespace impl { - fn format_time_t(time_t value) { + fn format_time_t(u128 value) { return std::time::format(std::time::to_utc(value)); };