hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit afdd8b8470628da4c190b4ec0c5f74f3f4f3a6a0
parent b7cd19ee08a420ebfff66065715111c55ecfd112
Author: Byron Torres <b@torresjrjr.com>
Date:   Sun, 31 Jul 2022 17:55:18 +0100

time::chrono: use temporary offset

Diffstat:
Mtime/chrono/timescale.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/time/chrono/timescale.ha b/time/chrono/timescale.ha @@ -86,7 +86,7 @@ fn conv_utc_tai(a: time::instant) (time::instant | time::error) = { }; const b = time::instant { - sec = a.sec + ofst, + sec = a.sec + 37, nsec = a.nsec, }; return b;