diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/debug.c | 2 |
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 { #ifndef STRIP_DEBUG_CODE if (debug_level) { - FILE *f = fopen(file, "w+"); + FILE *f = fopen(file, "wb"); fwrite(data, 1, length, f); fflush(f); fclose(f); |