From 295baae2f3a908270f2bf03b6d2dd7c011f0927d Mon Sep 17 00:00:00 2001 From: Christoph von Wittich Date: Sun, 21 Sep 2008 06:42:21 +0000 Subject: [PATCH] fix brackets svn path=/trunk/; revision=36365 --- reactos/lib/3rdparty/mingw/getopt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/lib/3rdparty/mingw/getopt.c b/reactos/lib/3rdparty/mingw/getopt.c index 3b0bfedfec4..1b520d90801 100644 --- a/reactos/lib/3rdparty/mingw/getopt.c +++ b/reactos/lib/3rdparty/mingw/getopt.c @@ -82,7 +82,7 @@ int _tgetopt(int argc, _TCHAR * const argv[], const _TCHAR * optstring) ++ s_nArgChar; /* unrecognized option */ - if(_toptopt == _T(':') || (pcOptChar = _tcschr(optstring, _toptopt)) == NULL) + if((_toptopt == _T(':')) || ((pcOptChar = _tcschr(optstring, _toptopt)) == NULL)) { /* print an error message */ if(_topterr && optstring[0] != _T(':'))