mirror of
https://github.com/neovim/neovim.git
synced 2026-07-09 19:09:39 +00:00
Merge pull request #26210 from neovim/backport-26203-to-release-0.9
[Backport release-0.9] fix(oldtest): always use a 64-bit int for swapfile block number
This commit is contained in:
@@ -269,7 +269,7 @@ func Test_recover_corrupted_swap_file()
|
||||
|
||||
" set the block number in a pointer entry to a negative number
|
||||
let b = copy(save_b)
|
||||
if system_64bit
|
||||
if v:true " Nvim changed this field from a long to an int64_t
|
||||
let b[4104:4111] = little_endian ? 0z00000000.00000080 : 0z80000000.00000000
|
||||
else
|
||||
let b[4104:4107] = little_endian ? 0z00000080 : 0z80000000
|
||||
|
||||
Reference in New Issue
Block a user