summaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
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
/* //////////////////////////////////////////////////////////////////////////////////////