mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
fix brackets
svn path=/trunk/; revision=36365
This commit is contained in:
parent
aa46f44e50
commit
295baae2f3
1 changed files with 1 additions and 1 deletions
2
reactos/lib/3rdparty/mingw/getopt.c
vendored
2
reactos/lib/3rdparty/mingw/getopt.c
vendored
|
@ -82,7 +82,7 @@ int _tgetopt(int argc, _TCHAR * const argv[], const _TCHAR * optstring)
|
||||||
++ s_nArgChar;
|
++ s_nArgChar;
|
||||||
|
|
||||||
/* unrecognized option */
|
/* unrecognized option */
|
||||||
if(_toptopt == _T(':') || (pcOptChar = _tcschr(optstring, _toptopt)) == NULL)
|
if((_toptopt == _T(':')) || ((pcOptChar = _tcschr(optstring, _toptopt)) == NULL))
|
||||||
{
|
{
|
||||||
/* print an error message */
|
/* print an error message */
|
||||||
if(_topterr && optstring[0] != _T(':'))
|
if(_topterr && optstring[0] != _T(':'))
|
||||||
|
|
Loading…
Reference in a new issue