mirror of https://github.com/xqemu/xqemu.git
qemu-img: avoid preprocessor directives in a printf call
Other choices include using "(printf)", but this one is not bad in terms of readability. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: malc <av1474@comtv.ru>
This commit is contained in:
parent
3f020d7024
commit
e00291c008
|
@ -58,7 +58,8 @@ static void format_print(void *opaque, const char *name)
|
||||||
/* Please keep in synch with qemu-img.texi */
|
/* Please keep in synch with qemu-img.texi */
|
||||||
static void help(void)
|
static void help(void)
|
||||||
{
|
{
|
||||||
printf("qemu-img version " QEMU_VERSION ", Copyright (c) 2004-2008 Fabrice Bellard\n"
|
const char *help_msg =
|
||||||
|
"qemu-img version " QEMU_VERSION ", Copyright (c) 2004-2008 Fabrice Bellard\n"
|
||||||
"usage: qemu-img command [command options]\n"
|
"usage: qemu-img command [command options]\n"
|
||||||
"QEMU disk image utility\n"
|
"QEMU disk image utility\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -91,9 +92,9 @@ static void help(void)
|
||||||
" '-a' applies a snapshot (revert disk to saved state)\n"
|
" '-a' applies a snapshot (revert disk to saved state)\n"
|
||||||
" '-c' creates a snapshot\n"
|
" '-c' creates a snapshot\n"
|
||||||
" '-d' deletes a snapshot\n"
|
" '-d' deletes a snapshot\n"
|
||||||
" '-l' lists all snapshots in the given image\n"
|
" '-l' lists all snapshots in the given image\n";
|
||||||
);
|
|
||||||
printf("\nSupported formats:");
|
printf("%s\nSupported formats:", help_msg);
|
||||||
bdrv_iterate_format(format_print, NULL);
|
bdrv_iterate_format(format_print, NULL);
|
||||||
printf("\n");
|
printf("\n");
|
||||||
exit(1);
|
exit(1);
|
||||||
|
|
Loading…
Reference in New Issue