X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fcomponents%2Fgetter%2Fhttp_getter_misc.ml;h=fa5d780b07be470bdfc1cb729375bfea09e82568;hb=e082eec771e24842f29a01fa258f7c80bc2db599;hp=38a943bc59b90091b89b32f6132b11c99ce427c5;hpb=2815c74c03f38089d0e27aba00e2280223b0f76f;p=helm.git diff --git a/matita/components/getter/http_getter_misc.ml b/matita/components/getter/http_getter_misc.ml index 38a943bc5..fa5d780b0 100644 --- a/matita/components/getter/http_getter_misc.ml +++ b/matita/components/getter/http_getter_misc.ml @@ -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;