Build fix Win32

This commit is contained in:
Themaister 2013-03-17 12:30:26 +01:00
parent 2588e60180
commit 5d7b2821cc
1 changed files with 1 additions and 1 deletions

View File

@ -590,7 +590,7 @@ bool config_get_path(config_file_t *conf, const char *key, char *buf, size_t siz
}
else if ((*value == ':') &&
#ifdef _WIN32
((value[1] == '/') || (value[1] == '\\'))
((value[1] == '/') || (value[1] == '\\')))
#else
(value[1] == '/'))
#endif