From 196813ea7466c54d26f71ff1760b433bdc29c081 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 27 Nov 2014 17:40:52 +0000 Subject: [PATCH] v2v: Fix command line --help output for --no-trim option. --- v2v/cmdline.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2v/cmdline.ml b/v2v/cmdline.ml index 85757e6af..420f89706 100644 --- a/v2v/cmdline.ml +++ b/v2v/cmdline.ml @@ -160,7 +160,7 @@ let parse_cmdline () = "-n", Arg.String add_network, "in:out " ^ s_"Map network 'in' to 'out'"; "--network", Arg.String add_network, "in:out " ^ ditto; "--no-copy", Arg.Clear do_copy, " " ^ s_"Just write the metadata"; - "--no-trim", Arg.String set_no_trim, "all|mp,mp,.." ^ s_"Don't trim selected mounts"; + "--no-trim", Arg.String set_no_trim, "all|mp,mp,.." ^ " " ^ s_"Don't trim selected mounts"; "-o", Arg.String set_output_mode, o_options ^ " " ^ s_"Set output mode (default: libvirt)"; "-oa", Arg.String set_output_alloc, "sparse|preallocated " ^ s_"Set output allocation mode"; "-oc", Arg.Set_string output_conn, "uri " ^ s_"Libvirt URI";