[Libguestfs] [PATCH v2 3/5] v2v: cmdline: Replace { foo = foo } with { foo } in record expression.

Richard W.M. Jones rjones at redhat.com
Fri Mar 16 13:30:41 UTC 2018


See:
https://forge.ocamlcore.org/docman/view.php/77/112/leroy-cug2010.pdf
---
 v2v/cmdline.ml | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/v2v/cmdline.ml b/v2v/cmdline.ml
index 6aba4afb5..fdd0f2614 100644
--- a/v2v/cmdline.ml
+++ b/v2v/cmdline.ml
@@ -627,11 +627,9 @@ read the man page virt-v2v(1).
       output_format, output_alloc in
 
   {
-    compressed = compressed; debug_overlays = debug_overlays;
-    do_copy = do_copy; in_place = in_place; network_map = network_map;
-    output_alloc = output_alloc; output_format = output_format;
-    output_name = output_name;
-    print_source = print_source; print_target;
-    root_choice = root_choice;
+    compressed; debug_overlays; do_copy; in_place; network_map;
+    output_alloc; output_format; output_name;
+    print_source; print_target;
+    root_choice;
   },
   input, output
-- 
2.13.2




More information about the Libguestfs mailing list