mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Pushed small win fix.
This commit is contained in:
@@ -70,7 +70,7 @@ char *strip_drive_prefix(char *path)
|
||||
static inline bool is_path_separator(char c)
|
||||
{
|
||||
#if PLATFORM_WINDOWS
|
||||
return c == '/' || c == '\';
|
||||
return c == '/' || c == '\\';
|
||||
#else
|
||||
return c == '/';
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user