Eliminate gcc warning in dso_win32.c.

This commit is contained in:
Andy Polyakov 2005-07-24 21:45:08 +00:00
parent 612a91110f
commit 0a882b6394

View File

@ -308,8 +308,8 @@ static struct file_st *win32_splitter(DSO *dso, const char *filename,
memset(result, 0, sizeof(struct file_st));
position = IN_DEVICE;
if(filename[0] == '\\' && filename[1] == '\\'
|| filename[0] == '/' && filename[1] == '/')
if((filename[0] == '\\' && filename[1] == '\\')
|| (filename[0] == '/' && filename[1] == '/'))
{
position = IN_NODE;
filename += 2;