This website works better with JavaScript.
Home
Help
Sign In
lolengine
/
lol
mirror of
https://github.com/lolengine/lol
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
getopt: Windows build fix
legacy
Sam Hocevar
8 years ago
parent
75a8caa6ad
commit
96fc303163
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/sys/getopt.cpp
+ 1
- 1
src/sys/getopt.cpp
View File
@@ -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++];
}
Write
Preview
Loading…
Cancel
Save