search for: a78e3e6

Displaying 6 results from an estimated 6 matches for "a78e3e6".

2016 Dec 09
2
Re: [PATCH 2/2] v2v: Fix ambiguous and probably incorrect pattern match (warning 57).
...because if neither clause matches then it will fall through > to displaying an error message, allowing the user to correct the > problem. > --- > v2v/output_vdsm.ml | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/v2v/output_vdsm.ml b/v2v/output_vdsm.ml > index a78e3e6..fb7dd3c 100644 > --- a/v2v/output_vdsm.ml > +++ b/v2v/output_vdsm.ml > @@ -83,6 +83,9 @@ object > let fields = List.rev fields in (* "UUID" "data-center" ... *) > match fields with > | "" :: uuid :: rest (* h...
2016 Dec 09
0
Re: [PATCH 2/2] v2v: Fix ambiguous and probably incorrect pattern match (warning 57).
...it will fall through > > to displaying an error message, allowing the user to correct the > > problem. > > --- > > v2v/output_vdsm.ml | 3 +++ > > 1 file changed, 3 insertions(+) > > > > diff --git a/v2v/output_vdsm.ml b/v2v/output_vdsm.ml > > index a78e3e6..fb7dd3c 100644 > > --- a/v2v/output_vdsm.ml > > +++ b/v2v/output_vdsm.ml > > @@ -83,6 +83,9 @@ object > > let fields = List.rev fields in (* "UUID" "data-center" ... *) > > match fields with > > | "" :: uui...
2016 Dec 08
3
[PATCH 1/2] Remove most instances of OCaml warning 52.
See: http://caml.inria.fr/pub/docs/manual-ocaml/comp.html#s:comp-warnings --- builder/index_parser.ml | 8 ++++---- generator/tests_c_api.ml | 4 ++-- mllib/common_utils.ml | 2 +- v2v/inspect_source.ml | 2 +- v2v/linux.ml | 2 +- v2v/xpath_helpers.ml | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/builder/index_parser.ml b/builder/index_parser.ml
2016 Dec 08
0
[PATCH 2/2] v2v: Fix ambiguous and probably incorrect pattern match (warning 57).
...sly was incorrect. However we are lucky because if neither clause matches then it will fall through to displaying an error message, allowing the user to correct the problem. --- v2v/output_vdsm.ml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/v2v/output_vdsm.ml b/v2v/output_vdsm.ml index a78e3e6..fb7dd3c 100644 --- a/v2v/output_vdsm.ml +++ b/v2v/output_vdsm.ml @@ -83,6 +83,9 @@ object let fields = List.rev fields in (* "UUID" "data-center" ... *) match fields with | "" :: uuid :: rest (* handles trailing "/"...
2016 Dec 07
0
[PATCH v2] v2v: Rename RHEV to RHV throughout.
...output +(** [output_rhv os output_alloc] creates and returns a new {!Types.output} object specialized for writing - output to RHEV-M or oVirt Export Storage Domain. *) + output to RHV-M or oVirt Export Storage Domain. *) diff --git a/v2v/output_vdsm.ml b/v2v/output_vdsm.ml index 6771daf..a78e3e6 100644 --- a/v2v/output_vdsm.ml +++ b/v2v/output_vdsm.ml @@ -51,7 +51,7 @@ object method supported_firmware = [ TargetBIOS ] - (* RHEV doesn't support serial consoles. This causes the conversion + (* RHV doesn't support serial consoles. This causes the conversion * step to re...
2016 Dec 07
2
[PATCH v2] v2v: Rename RHEV to RHV throughout.
v2: - Fix virt-p2v messages too. Rich.