ANSI / POSIX do not define "wa" as mode string for fopen. I have no idea how many implementations of libc will fail with this mode which was introduced by the latest version of exec.c.
The standard mode for append is just "a". Even better (because it is faster and creates smaller log files for Windows) is "ab" for append and "wb" otherwise. Stefan Paul Brook schrieb: > CVSROOT: /sources/qemu > Module name: qemu > Changes by: Paul Brook <pbrook> 07/06/30 13:53:24 > > Modified files: > . : exec.c monitor.c > > Log message: > Allow changing log filename. > Close logfile when logging is disabled.