build: Add ./configure --disable-ocaml option.
[libguestfs.git] / ocaml / examples / xmllight_loader.ml
index 46dd77f..6f0c536 100644 (file)
@@ -6,9 +6,9 @@ let from_xml ?ns xml =
   let l = make ?ns () in
   let rec aux = function
     | Element (tag, attrs, child) ->
-       start_elem l tag attrs; List.iter aux child; end_elem l ()
+        start_elem l tag attrs; List.iter aux child; end_elem l ()
     | PCData s ->
-       text l s in
+        text l s in
   aux xml;
   get l