summaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
authorruki <[email protected]>2018-08-13 22:32:32 +0800
committerruki <[email protected]>2018-08-13 09:15:17 +0800
commita726fe973e9efd1c0071dfb7b32ebb1fa764a889 (patch)
tree479aa1eb394d1428624386bb9144b65f901667c9 /core/src
parentd1aec2b31dfe6baf881817da5a4fbb0db8d0e7ac (diff)
fix patch bug
Diffstat (limited to 'core/src')
-rw-r--r--core/src/tbox/src/tbox/platform/path.c8
1 files 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
/* //////////////////////////////////////////////////////////////////////////////////////