From 87262d975952a44f159a5db3d181c6a6dd79f5ab Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 11 Oct 2017 13:07:34 -0600 Subject: [PATCH] Fix broken path separator definition on Windows Fixes: 53a7af851836 ("convert FIO_OS_PATH_SEPARATOR to a character") Signed-off-by: Jens Axboe --- os/os-windows.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os/os-windows.h b/os/os-windows.h index 9e6f21ef..520da19a 100644 --- a/os/os-windows.h +++ b/os/os-windows.h @@ -37,7 +37,7 @@ int rand_r(unsigned *); #define FIO_PREFERRED_ENGINE "windowsaio" #define FIO_PREFERRED_CLOCK_SOURCE CS_CGETTIME -#define FIO_OS_PATH_SEPARATOR '\' +#define FIO_OS_PATH_SEPARATOR '\\' #define FIO_MAX_CPUS MAXIMUM_PROCESSORS -- 2.25.1