PR: 1944
Submitted by: Guenter <lists@gknw.net> Reviewed by: steve@openssl.org Fix gcc warning on mingw.
This commit is contained in:
@@ -327,8 +327,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;
|
||||
|
Reference in New Issue
Block a user