summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug.c b/src/debug.c
index b1c528d..0bb87a2 100644
--- a/src/debug.c
+++ b/src/debug.c
@@ -140,7 +140,7 @@ inline void debug_buffer_to_file(const char *file, const char *data, const int l
140{ 140{
141#ifndef STRIP_DEBUG_CODE 141#ifndef STRIP_DEBUG_CODE
142 if (debug_level) { 142 if (debug_level) {
143 FILE *f = fopen(file, "w+"); 143 FILE *f = fopen(file, "wb");
144 fwrite(data, 1, length, f); 144 fwrite(data, 1, length, f);
145 fflush(f); 145 fflush(f);
146 fclose(f); 146 fclose(f);