Explorar el Código

getopt: Windows build fix

legacy
Sam Hocevar hace 8 años
padre
commit
96fc303163
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/sys/getopt.cpp

+ 1
- 1
src/sys/getopt.cpp Ver fichero

@@ -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++];
}


Cargando…
Cancelar
Guardar