Bläddra i källkod

getopt: Windows build fix

legacy
Sam Hocevar 8 år sedan
förälder
incheckning
96fc303163
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. +1
    -1
      src/sys/getopt.cpp

+ 1
- 1
src/sys/getopt.cpp Visa fil

@@ -169,7 +169,7 @@ int getopt::parse()
++this->index;
if (m_private->m_opts[i].has_arg)
{
if (this->index >= m_private->argc)
if (this->index >= m_private->m_argc)
goto too_few;
this->arg = argv[this->index++];
}


Laddar…
Avbryt
Spara