Skip to content
Snippets Groups Projects
Commit 0a882b63 authored by Andy Polyakov's avatar Andy Polyakov
Browse files

Eliminate gcc warning in dso_win32.c.

parent 612a9111
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment