Skip to content

Commit

Permalink
Update rconsole.c
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Wallin <[email protected]>

[skip-ci]
  • Loading branch information
stevewallin committed Oct 11, 2017
1 parent 9b0546a commit 06b7a62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/exelib/common/rconsole.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ remoteConsole_parseCmdLine(J9PortLibrary *portLibrary, UDATA lastLegalArg, char
port = NULL;
filepath = NULL;
for (i = 1; i <= lastLegalArg; i++) {
if ((argv[i][0] == '-')) {
if (argv[i][0] == '-') {
if ((strncmp(&argv[i][1], "IO", 2) == 0) ||
(strncmp(&argv[i][1], "io", 2) == 0)) {

Expand Down

0 comments on commit 06b7a62

Please sign in to comment.