From ab90f09e2c08c05bf2f2135d405068984af1919d Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Wed, 25 Mar 2020 22:08:28 -0400 Subject: [PATCH] small fix --- src/camlzip/Tiny_httpd_camlzip.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/camlzip/Tiny_httpd_camlzip.ml b/src/camlzip/Tiny_httpd_camlzip.ml index 0fc4f13c..5912d925 100644 --- a/src/camlzip/Tiny_httpd_camlzip.ml +++ b/src/camlzip/Tiny_httpd_camlzip.ml @@ -3,7 +3,7 @@ module S = Tiny_httpd module BS = Tiny_httpd.Byte_stream let mk_decode_deflate_stream_ ~buf_size () (is:S.byte_stream) : S.byte_stream = - S._debug (fun k->k "wrap stream with inflate.decode"); + S._debug (fun k->k "wrap stream with deflate.decode"); let buf = Bytes.make buf_size ' ' in let buf_len = ref 0 in let write_offset = ref 0 in