Remove unnecessary masking

Signed-off-by: Cenk Alti <cenkalti@gmail.com>
pull/502/head
Cenk Alti 2023-05-16 16:37:36 -04:00
parent 160cd29ec3
commit b3df07c58c
No known key found for this signature in database
GPG Key ID: 30BB97EF64A82993
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ func mmap(db *DB, sz int) error {
return fmt.Errorf("truncate: %s", err)
}
sizehi = uint32(sz >> 32)
sizelo = uint32(sz) & 0xffffffff
sizelo = uint32(sz)
}
// Open a file mapping handle.