From: Andy Polyakov Date: Sun, 24 Jul 2005 21:45:08 +0000 (+0000) Subject: Eliminate gcc warning in dso_win32.c. X-Git-Tag: OpenSSL_0_9_8k^2~1907 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0a882b6394aaa356857aaf4046e3cbaabee09774;p=oweals%2Fopenssl.git Eliminate gcc warning in dso_win32.c. --- diff --git a/crypto/dso/dso_win32.c b/crypto/dso/dso_win32.c index c28184099a..59ff10a15d 100644 --- a/crypto/dso/dso_win32.c +++ b/crypto/dso/dso_win32.c @@ -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;