diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2026-02-08 12:48:41 +0100 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2026-02-08 12:48:41 +0100 |
| commit | 8f4bcf4d31fe83f2fe9a93a0b0a8e28d11c0c882 (patch) | |
| tree | 371e91d2ef0620ca059c39d14f1b7172b14839b7 /core/crypto | |
| parent | c2647673ec503938a302bd083f42602a5a000177 (diff) | |
More conflicts during rebase
Diffstat (limited to 'core/crypto')
| -rw-r--r-- | core/crypto/hash/hash_os.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/crypto/hash/hash_os.odin b/core/crypto/hash/hash_os.odin index 32347c452..28db9c61f 100644 --- a/core/crypto/hash/hash_os.odin +++ b/core/crypto/hash/hash_os.odin @@ -16,7 +16,7 @@ hash_file_by_handle :: proc( io.Error, ) { if !load_at_once { - return hash_stream(algorithm, handle.stream, allocator) + return hash_stream(algorithm, os.to_stream(handle), allocator) } buf, err := os.read_entire_file(handle, allocator) |