Commit 0a882b63 authored by Andy Polyakov's avatar Andy Polyakov
Browse files

Eliminate gcc warning in dso_win32.c.

parent 612a9111
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;