file_path_special.c - cleanups

This commit is contained in:
twinaphex 2015-11-26 00:27:39 +01:00
parent cb98cbc1bf
commit 53a0079aa2

View File

@ -63,11 +63,12 @@ void fill_pathname_expand_special(char *out_path,
}
}
else if ((in_path[0] == ':') &&
#ifdef _WIN32
((in_path[1] == '/') || (in_path[1] == '\\'))
#else
(
(in_path[1] == '/')
#ifdef _WIN32
|| (in_path[1] == '\\')
#endif
)
)
{
size_t src_size;