CLI tweak

This commit is contained in:
zzz
2019-03-29 12:55:17 +00:00
parent 944fe4794e
commit 7d40dfe1e5

View File

@ -115,7 +115,7 @@ public class Base32 {
private static void decode(InputStream in, OutputStream out) throws IOException {
byte decoded[] = decode(DataHelper.getUTF8(read(in)));
if (decoded == null) {
System.out.println("FAIL");
System.err.println("FAIL");
return;
}
out.write(decoded);