From 3cdfeead480995537d634ead08a4721aca8059f4 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Mon, 16 Mar 2015 12:39:18 -0700 Subject: [PATCH] Open output files in binary mode. Hopefully this will help with #16 --- src/dfmt.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dfmt.d b/src/dfmt.d index 4043d07..aaa1779 100644 --- a/src/dfmt.d +++ b/src/dfmt.d @@ -95,7 +95,7 @@ else buffer = new ubyte[](cast(size_t) f.size); f.rawRead(buffer); if (inplace) - output = File(path, "w"); + output = File(path, "wb"); format(path, buffer, output.lockingTextWriter(), &formatterConfig); } }