summary refs log tree commit diff stats
path: root/qemu-img.c
diff options
context:
space:
mode:
authormalc <av1474@comtv.ru>2010-02-07 02:04:28 +0300
committermalc <av1474@comtv.ru>2010-02-07 02:04:28 +0300
commitbc5b6004588ad17370e0416e40b4aa9cf977023b (patch)
treee02a59e0a34449fdd29c8b29e31ac55f25890d93 /qemu-img.c
parentd0f2c4c60263e29a87681433e696844401514194 (diff)
downloadfocaccia-qemu-bc5b6004588ad17370e0416e40b4aa9cf977023b.tar.gz
focaccia-qemu-bc5b6004588ad17370e0416e40b4aa9cf977023b.zip
On some systems printf is a macro
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'qemu-img.c')
-rw-r--r--qemu-img.c60
1 files changed, 30 insertions, 30 deletions
diff --git a/qemu-img.c b/qemu-img.c
index cbba4fc790..bbfeea18a7 100644
--- a/qemu-img.c
+++ b/qemu-img.c
@@ -58,41 +58,41 @@ static void format_print(void *opaque, const char *name)
 /* Please keep in synch with qemu-img.texi */
 static void help(void)
 {
-    printf("qemu-img version " QEMU_VERSION ", Copyright (c) 2004-2008 Fabrice Bellard\n"
-           "usage: qemu-img command [command options]\n"
-           "QEMU disk image utility\n"
-           "\n"
-           "Command syntax:\n"
+    (printf)("qemu-img version " QEMU_VERSION ", Copyright (c) 2004-2008 Fabrice Bellard\n"
+             "usage: qemu-img command [command options]\n"
+             "QEMU disk image utility\n"
+             "\n"
+             "Command syntax:\n"
 #define DEF(option, callback, arg_string)        \
            "  " arg_string "\n"
 #include "qemu-img-cmds.h"
 #undef DEF
 #undef GEN_DOCS
-           "\n"
-           "Command parameters:\n"
-           "  'filename' is a disk image filename\n"
-           "  'fmt' is the disk image format. It is guessed automatically in most cases\n"
-           "  'size' is the disk image size in bytes. Optional suffixes\n"
-           "    'k' or 'K' (kilobyte, 1024), 'M' (megabyte, 1024k), 'G' (gigabyte, 1024M)\n"
-           "    and T (terabyte, 1024G) are supported. 'b' is ignored.\n"
-           "  'output_filename' is the destination disk image filename\n"
-           "  'output_fmt' is the destination format\n"
-           "  'options' is a comma separated list of format specific options in a\n"
-           "    name=value format. Use -o ? for an overview of the options supported by the\n"
-           "    used format\n"
-           "  '-c' indicates that target image must be compressed (qcow format only)\n"
-           "  '-u' enables unsafe rebasing. It is assumed that old and new backing file\n"
-           "       match exactly. The image doesn't need a working backing file before\n"
-           "       rebasing in this case (useful for renaming the backing file)\n"
-           "  '-h' with or without a command shows this help and lists the supported formats\n"
-           "\n"
-           "Parameters to snapshot subcommand:\n"
-           "  'snapshot' is the name of the snapshot to create, apply or delete\n"
-           "  '-a' applies a snapshot (revert disk to saved state)\n"
-           "  '-c' creates a snapshot\n"
-           "  '-d' deletes a snapshot\n"
-           "  '-l' lists all snapshots in the given image\n"
-           );
+             "\n"
+             "Command parameters:\n"
+             "  'filename' is a disk image filename\n"
+             "  'fmt' is the disk image format. It is guessed automatically in most cases\n"
+             "  'size' is the disk image size in bytes. Optional suffixes\n"
+             "    'k' or 'K' (kilobyte, 1024), 'M' (megabyte, 1024k), 'G' (gigabyte, 1024M)\n"
+             "    and T (terabyte, 1024G) are supported. 'b' is ignored.\n"
+             "  'output_filename' is the destination disk image filename\n"
+             "  'output_fmt' is the destination format\n"
+             "  'options' is a comma separated list of format specific options in a\n"
+             "    name=value format. Use -o ? for an overview of the options supported by the\n"
+             "    used format\n"
+             "  '-c' indicates that target image must be compressed (qcow format only)\n"
+             "  '-u' enables unsafe rebasing. It is assumed that old and new backing file\n"
+             "       match exactly. The image doesn't need a working backing file before\n"
+             "       rebasing in this case (useful for renaming the backing file)\n"
+             "  '-h' with or without a command shows this help and lists the supported formats\n"
+             "\n"
+             "Parameters to snapshot subcommand:\n"
+             "  'snapshot' is the name of the snapshot to create, apply or delete\n"
+             "  '-a' applies a snapshot (revert disk to saved state)\n"
+             "  '-c' creates a snapshot\n"
+             "  '-d' deletes a snapshot\n"
+             "  '-l' lists all snapshots in the given image\n"
+        );
     printf("\nSupported formats:");
     bdrv_iterate_format(format_print, NULL);
     printf("\n");