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>
This commit is contained in:
parent
e0ae49871a
commit
0781dd6e79
@ -651,7 +651,7 @@ void cpu_loop(CPUSPARCState *env)
|
|||||||
static void usage(void)
|
static void usage(void)
|
||||||
{
|
{
|
||||||
printf("qemu-" TARGET_NAME " version " QEMU_VERSION QEMU_PKGVERSION
|
printf("qemu-" TARGET_NAME " version " QEMU_VERSION QEMU_PKGVERSION
|
||||||
", " QEMU_COPYRIGHT "\n"
|
"\n" QEMU_COPYRIGHT "\n"
|
||||||
"usage: qemu-" TARGET_NAME " [options] program [arguments...]\n"
|
"usage: qemu-" TARGET_NAME " [options] program [arguments...]\n"
|
||||||
"BSD CPU emulator (compiled for %s emulation)\n"
|
"BSD CPU emulator (compiled for %s emulation)\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -3956,7 +3956,7 @@ static void handle_arg_strace(const char *arg)
|
|||||||
static void handle_arg_version(const char *arg)
|
static void handle_arg_version(const char *arg)
|
||||||
{
|
{
|
||||||
printf("qemu-" TARGET_NAME " version " QEMU_VERSION QEMU_PKGVERSION
|
printf("qemu-" TARGET_NAME " version " QEMU_VERSION QEMU_PKGVERSION
|
||||||
", " QEMU_COPYRIGHT "\n");
|
"\n" QEMU_COPYRIGHT "\n");
|
||||||
exit(EXIT_SUCCESS);
|
exit(EXIT_SUCCESS);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@
|
|||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
|
|
||||||
#define QEMU_IMG_VERSION "qemu-img version " QEMU_VERSION QEMU_PKGVERSION \
|
#define QEMU_IMG_VERSION "qemu-img version " QEMU_VERSION QEMU_PKGVERSION \
|
||||||
", " QEMU_COPYRIGHT "\n"
|
"\n" QEMU_COPYRIGHT "\n"
|
||||||
|
|
||||||
typedef struct img_cmd_t {
|
typedef struct img_cmd_t {
|
||||||
const char *name;
|
const char *name;
|
||||||
|
2
vl.c
2
vl.c
@ -1958,7 +1958,7 @@ static void main_loop(void)
|
|||||||
|
|
||||||
static void version(void)
|
static void version(void)
|
||||||
{
|
{
|
||||||
printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", "
|
printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION "\n"
|
||||||
QEMU_COPYRIGHT "\n");
|
QEMU_COPYRIGHT "\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user