diff --git a/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java b/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java index 2c0491e9b..1a38454d0 100644 --- a/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java +++ b/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java @@ -1822,7 +1822,7 @@ public class CommandLineArgumentParser { SWF swf = new SWF(); new SwfXmlImporter().importSwf(swf, xml); try (OutputStream fos = new BufferedOutputStream(new FileOutputStream(new File(args.pop())))) { - swf.saveTo(new BufferedOutputStream(fos)); + swf.saveTo(fos); } } catch (IOException ex) { logger.log(Level.SEVERE, null, ex);