includes/type: Fixed time_t format function

This commit is contained in:
Nik
2022-09-07 14:21:53 +02:00
committed by GitHub
parent 93c53f2d2e
commit 244dd88098

View File

@@ -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));
};