Browse Source

Fix typo in netrexxc optional task

PR:
Obtained from:
Submitted by:
Reviewed by:


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@267696 13f79535-47bb-0310-9956-ffa450edef68
master
Conor MacNeill 25 years ago
parent
commit
4d68f55377
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/NetRexxC.java

+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/optional/NetRexxC.java View File

@@ -551,7 +551,7 @@ public class NetRexxC extends MatchingTask {
try { try {
StringWriter out = new StringWriter(); StringWriter out = new StringWriter();
int rc = COM.ibm.netrexx.process.NetRexxC.main( int rc = COM.ibm.netrexx.process.NetRexxC.main(
new Rexx(compileArgs), new PrintWriter(out);
new Rexx(compileArgs), new PrintWriter(out));


if (rc > 1) { // 1 is warnings from real NetRexxC if (rc > 1) { // 1 is warnings from real NetRexxC
project.log(out.toString(), Project.MSG_ERR); project.log(out.toString(), Project.MSG_ERR);


Loading…
Cancel
Save