]> matita.cs.unibo.it Git - helm.git/blobdiff - matita/components/getter/http_getter_misc.ml
Porting to ocaml 5
[helm.git] / matita / components / getter / http_getter_misc.ml
index 38a943bc59b90091b89b32f6132b11c99ce427c5..fa5d780b07be470bdfc1cb729375bfea09e82568 100644 (file)
@@ -183,7 +183,7 @@ let gunzip ?(keep = false) ?output fname =
       (try
         while true do
           let bytes = Gzip.input ic buf 0 bufsiz in
-          if bytes = 0 then raise End_of_file else Pervasives.output oc buf 0 bytes
+          if bytes = 0 then raise End_of_file else Stdlib.output oc buf 0 bytes
         done
       with End_of_file -> ());
        close_out oc;