From a726fe973e9efd1c0071dfb7b32ebb1fa764a889 Mon Sep 17 00:00:00 2001 From: ruki Date: Mon, 13 Aug 2018 22:32:32 +0800 Subject: fix patch bug --- core/src/tbox/src/tbox/platform/path.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/tbox/src/tbox/platform/path.c b/core/src/tbox/src/tbox/platform/path.c index 07d247810..9992e2846 100644 --- a/core/src/tbox/src/tbox/platform/path.c +++ b/core/src/tbox/src/tbox/platform/path.c @@ -43,16 +43,16 @@ // the path separator #ifdef TB_CONFIG_OS_WINDOWS -# define TB_PATH_SEPARATOR '\\' +# define TB_PATH_SEPARATOR '\\' #else -# define TB_PATH_SEPARATOR '/' +# define TB_PATH_SEPARATOR '/' #endif // is path separator? #ifdef TB_CONFIG_OS_WINDOWS -# define tb_path_is_separator(c) ((c) == '/' || (c) == '\\') +# define tb_path_is_separator(c) ((c) == '/' || (c) == '\\') #else -# define tb_path_is_separator(c) ((c) == '/') +# define tb_path_is_separator(c) ((c) == '/') #endif /* ////////////////////////////////////////////////////////////////////////////////////// -- cgit v1.3.1