Skip to content

Commit

Permalink
Eliminate gcc warning in dso_win32.c.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Polyakov committed Jul 24, 2005
1 parent 612a911 commit 0a882b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crypto/dso/dso_win32.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 0a882b6

Please sign in to comment.