diff options
author | Thomas Huth <thuth@redhat.com> | 2016-10-05 11:54:44 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-10-24 11:30:55 +0200 |
commit | 0781dd6e79df78c6e162ea7282e8c973c0a4cd1f (patch) | |
tree | 267c66519e2c2cc7ee2a3b553415f76053d7f398 /linux-user | |
parent | e0ae49871ae697b5d1a8853e79cbee35fda2145b (diff) | |
download | qemu-0781dd6e79df78c6e162ea7282e8c973c0a4cd1f.tar.gz qemu-0781dd6e79df78c6e162ea7282e8c973c0a4cd1f.tar.bz2 qemu-0781dd6e79df78c6e162ea7282e8c973c0a4cd1f.zip |
Put the copyright information on a separate line
The output string QEMU with "--version" is very long, it does
not fit into a normal line of a terminal window anymore. By
putting the copyright information on a separate line instead,
the output looks much nicer.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-Id: <1475661284-30153-1-git-send-email-thuth@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'linux-user')
-rw-r--r-- | linux-user/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/main.c b/linux-user/main.c index 18d5a62a16..c6f2e20c09 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -3956,7 +3956,7 @@ static void handle_arg_strace(const char *arg) static void handle_arg_version(const char *arg) { printf("qemu-" TARGET_NAME " version " QEMU_VERSION QEMU_PKGVERSION - ", " QEMU_COPYRIGHT "\n"); + "\n" QEMU_COPYRIGHT "\n"); exit(EXIT_SUCCESS); } |