Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
efff02bb
Commit
efff02bb
authored
Jul 22, 2017
by
Mark Olesen
Browse files
BUG: incorrect range check in foamHelp (closes
#547
)
parent
41b40c6c
Changes
1
Hide whitespace changes
Inline
Side-by-side
applications/utilities/miscellaneous/foamHelp/foamHelp.C
View file @
efff02bb
...
...
@@ -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
Markdown
is supported
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