diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2010-02-04 16:49:58 +0100 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2010-02-08 12:12:40 +0300 |
commit | bec7c2d4148fd4e212265ea21eb2cb66b762611f (patch) | |
tree | 31df9ac9d7b3d2c8b593cce7b1746c5fb5ee9137 /vl.c | |
parent | 30bf5f46e7e1a405edae582968e2c6f91ab81040 (diff) |
do not interpolate % from vl.c to qemu-options.h
Since qemu-options.h is only used in vl.c, we can avoid using
brittle interpolation from a generated file.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -4041,14 +4041,7 @@ static void help(int exitcode) "\n" "When using -nographic, press 'ctrl-a h' to get some help.\n" , - "qemu", - DEFAULT_RAM_SIZE, -#ifndef _WIN32 - DEFAULT_NETWORK_SCRIPT, - DEFAULT_NETWORK_DOWN_SCRIPT, -#endif - DEFAULT_GDBSTUB_PORT, - "/tmp/qemu.log"); + "qemu"); exit(exitcode); } |