qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 2/2] trace: use binary file open mode in simpletrace


From: Stefan Hajnoczi
Subject: [Qemu-devel] [PATCH 2/2] trace: use binary file open mode in simpletrace
Date: Fri, 9 Sep 2011 10:37:02 +0100

For Windows portability the simple trace backend must use the 'b' file
open mode.  This prevents the stdio library from mangling 0x0a/0x0d
newline characters.

Signed-off-by: Stefan Hajnoczi <address@hidden>
---
 trace/simple.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/trace/simple.c b/trace/simple.c
index 92c315a..2f7dfbc 100644
--- a/trace/simple.c
+++ b/trace/simple.c
@@ -230,7 +230,7 @@ void st_set_trace_file_enabled(bool enable)
             .x1 = HEADER_VERSION,
         };
 
-        trace_fp = fopen(trace_file_name, "w");
+        trace_fp = fopen(trace_file_name, "wb");
         if (!trace_fp) {
             return;
         }
-- 
1.7.5.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]