summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AK/Time.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/Time.h b/AK/Time.h
index f1a3f28b1d..645a9d67d0 100644
--- a/AK/Time.h
+++ b/AK/Time.h
@@ -136,7 +136,7 @@ private:
}
public:
- [[nodiscard]] constexpr static Time from_timestamp(u16 year, u8 month, u8 day, u8 hour, u8 minute, u8 second, u8 millisecond)
+ [[nodiscard]] constexpr static Time from_timestamp(i32 year, u8 month, u8 day, u8 hour, u8 minute, u8 second, u16 millisecond)
{
constexpr auto milliseconds_per_day = 86'400'000;
constexpr auto milliseconds_per_hour = 3'600'000;