You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/08/27 13:54:45 UTC

[commons-crypto] branch master updated: Fix mesage in test.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-crypto.git


The following commit(s) were added to refs/heads/master by this push:
     new dfe383c  Fix mesage in test.
dfe383c is described below

commit dfe383c39506d3c57f16565eb522f0614f1543ba
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Aug 27 09:54:36 2020 -0400

    Fix mesage in test.
---
 src/test/java/org/apache/commons/crypto/jna/OpenSslNativeJnaTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/crypto/jna/OpenSslNativeJnaTest.java b/src/test/java/org/apache/commons/crypto/jna/OpenSslNativeJnaTest.java
index 5e96231..9b86434 100644
--- a/src/test/java/org/apache/commons/crypto/jna/OpenSslNativeJnaTest.java
+++ b/src/test/java/org/apache/commons/crypto/jna/OpenSslNativeJnaTest.java
@@ -27,7 +27,7 @@ public class OpenSslNativeJnaTest {
         if (OpenSslJna.isEnabled()) {
             System.out.println("** INFO: JNA is using: " + OpenSslJna.OpenSSLVersion(0));
         } else {
-            System.out.printf("** WARN: Could not enable JNA; detected lib VERSION 0x%x: %s", OpenSslNativeJna.VERSION,
+            System.out.printf("** WARN: Could not enable JNA; detected lib VERSION 0x%x: %s%n", OpenSslNativeJna.VERSION,
                     OpenSslJna.initialisationError().getMessage());
             // OpenSslJna.initialisationError().printStackTrace();
         }