From 476be9fda6e29d52a982abf69d8461c64b5a9a35 Mon Sep 17 00:00:00 2001 From: stevewallin Date: Thu, 5 Oct 2017 16:10:40 -0700 Subject: [PATCH] Update rconsole.c removed additional parenthesis to allow compilation on osx [skip-ci] Signed-Off-By: Steve Wallin --- runtime/exelib/common/rconsole.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/exelib/common/rconsole.c b/runtime/exelib/common/rconsole.c index b45d8f5a232..2669ca95c3a 100644 --- a/runtime/exelib/common/rconsole.c +++ b/runtime/exelib/common/rconsole.c @@ -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)) {