diff options
Diffstat (limited to 'bsd-user')
-rw-r--r-- | bsd-user/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bsd-user/main.c b/bsd-user/main.c index abe9a26f9b..4819b9ec63 100644 --- a/bsd-user/main.c +++ b/bsd-user/main.c @@ -19,6 +19,7 @@ #include "qemu/osdep.h" #include <machine/trap.h> +#include "qapi/error.h" #include "qemu.h" #include "qemu/path.h" #include "qemu/help_option.h" @@ -847,7 +848,7 @@ int main(int argc, char **argv) /* init debug */ qemu_log_needs_buffers(); - qemu_set_log_filename(log_file); + qemu_set_log_filename(log_file, &error_fatal); if (log_mask) { int mask; |