Skip to content
Snippets Groups Projects
Commit 461cb2f8 authored by rswindell's avatar rswindell
Browse files

Bug-fix in last commit for Win32 builds.

parent 97e0fe2e
Branches
Tags
No related merge requests found
...@@ -824,8 +824,8 @@ char* DLLCALL backslash(char* path) ...@@ -824,8 +824,8 @@ char* DLLCALL backslash(char* path)
#if defined(__unix__) #if defined(__unix__)
/* Convert trailing backslash to forwardslash on *nix */ /* Convert trailing backslash to forwardslash on *nix */
if(*p!='\\') if(*p!='\\')
p++;
#endif #endif
p++;
*p=PATH_DELIM; *p=PATH_DELIM;
*(++p)=0; *(++p)=0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment