summaryrefslogtreecommitdiff
path: root/trace
diff options
context:
space:
mode:
authorStefan Hajnoczi <stefanha@linux.vnet.ibm.com>2011-09-05 18:31:21 +0100
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>2011-09-21 11:30:10 +0100
commit6c2a40742602c3cbe6a3905229dd539d7c311550 (patch)
treeaf0f2f640b92cdca33cce15d5418bd575ab440bc /trace
parent85aff1586fe4a0dfc6eda2dfd6e79e78063f4fbb (diff)
downloadqemu-6c2a40742602c3cbe6a3905229dd539d7c311550.tar.gz
trace: use binary file open mode in simpletrace
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 <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'trace')
-rw-r--r--trace/simple.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/trace/simple.c b/trace/simple.c
index 885764a031..b639dda806 100644
--- a/trace/simple.c
+++ b/trace/simple.c
@@ -234,7 +234,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;
}