aboutsummaryrefslogtreecommitdiff
path: root/core/crypto
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2026-02-08 12:48:41 +0100
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2026-02-08 12:48:41 +0100
commit8f4bcf4d31fe83f2fe9a93a0b0a8e28d11c0c882 (patch)
tree371e91d2ef0620ca059c39d14f1b7172b14839b7 /core/crypto
parentc2647673ec503938a302bd083f42602a5a000177 (diff)
More conflicts during rebase
Diffstat (limited to 'core/crypto')
-rw-r--r--core/crypto/hash/hash_os.odin2
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)