| author | |
| committer | |
| log | 858d7eda6550ebb80e96c92b82c2e17ca5107b29 |
| tree | 5379ff6e0cd0852ce07321a08c98e15cca7ff8f2 |
| parent | c51e26887e839ba39f684a63f13dca4051030700 |
| parent | a0a36bf92e11ec0c2ff5d2a5302c9d4b1b3e1f7b |
Reviewed-on: https://codeberg.org/ziglang/zig/pulls/31966
Reviewed-by: Andrew Kelley <andrew@ziglang.org>1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/Io.zig+1-1| ... | ... | @@ -890,7 +890,7 @@ pub const Clock = enum { |
| 890 | 890 | if (t.clock == clock) return t; |
| 891 | 891 | const now_old = t.clock.now(io); |
| 892 | 892 | const now_new = clock.now(io); |
| 893 | const duration = now_old.durationTo(t); | |
| 893 | const duration = now_old.durationTo(t.raw); | |
| 894 | 894 | return .{ |
| 895 | 895 | .clock = clock, |
| 896 | 896 | .raw = now_new.addDuration(duration), |