Migrate to Junit 5 Jupiter
[lttng-ust-java-tests.git] / lttng-tools-java / src / main / java / org / lttng / tools / utils / ShellUtils.java
index 112d5d416f16c072c57dea597200aaf583e6a22c..5c451961e63e4eb19f969ac869c560c2cb821eb1 100644 (file)
@@ -69,7 +69,7 @@ public final class ShellUtils {
             Process p = builder.start();
             int ret = p.waitFor();
 
-            System.out.println(String.format("(returned from command: %d)", ret));
+            System.out.println(String.format("(returned from command: %d)", Integer.valueOf(ret)));
 
             return (ret == 0);
 
This page took 0.022634 seconds and 4 git commands to generate.