The following changes since commit e4a9812dee084b058eca6ebde9634a3d573a0079: engines:nvme: fill command fields as per pi check bits (2023-09-11 10:55:56 -0600) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to e2c5f17e3559cc7c96706cd75c2609f12675c60b: verify: open state file in binary mode on Windows (2023-09-14 18:54:25 -0400) ---------------------------------------------------------------- Vincent Fu (1): verify: open state file in binary mode on Windows verify.c | 4 ++++ 1 file changed, 4 insertions(+) --- Diff of recent changes: diff --git a/verify.c b/verify.c index 2848b686..f7355f30 100644 --- a/verify.c +++ b/verify.c @@ -1648,6 +1648,10 @@ static int open_state_file(const char *name, const char *prefix, int num, else flags = O_RDONLY; +#ifdef _WIN32 + flags |= O_BINARY; +#endif + verify_state_gen_name(out, sizeof(out), name, prefix, num); fd = open(out, flags, 0644);