Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
fce95457
Commit
fce95457
authored
Jul 22, 2017
by
Mark OLESEN
Browse files
BUG: incorrect range check in foamHelp (closes
#547
)
parent
01292a9a
Changes
1
Hide whitespace changes
Inline
Side-by-side
applications/utilities/miscellaneous/foamHelp/foamHelp.C
View file @
fce95457
...
...
@@ -45,7 +45,7 @@ int main(int argc, char *argv[])
#include
"addToolOption.H"
// Intercept request for help
if
((
argc
>
0
)
&&
(
strcmp
(
argv
[
1
],
"-help"
)
==
0
))
if
((
argc
>
1
)
&&
(
strcmp
(
argv
[
1
],
"-help"
)
==
0
))
{
#include
"setRootCase.H"
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment