sim-card
/
qemu
Archived
10
0
Fork 0

Fix bogus fopen mode.

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3038 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
pbrook 2007-07-01 18:21:11 +00:00
parent 7e1543c23b
commit 11fcfab4b0
1 changed files with 1 additions and 1 deletions

2
exec.c
View File

@ -1161,7 +1161,7 @@ void cpu_set_log(int log_flags)
{
loglevel = log_flags;
if (loglevel && !logfile) {
logfile = fopen(logfilename, log_append ? "wa" : "w");
logfile = fopen(logfilename, log_append ? "a" : "w");
if (!logfile) {
perror(logfilename);
_exit(1);