blob: 49822426d8a31a7c45b8abb152ccf3d43c9caeb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
Index: camlzip-1.05/zip.ml
===================================================================
--- camlzip-1.05.orig/zip.ml
+++ camlzip-1.05/zip.ml
@@ -73,8 +73,6 @@ type out_file =
mutable of_entries: entry list;
of_comment: string }
-exception Error of string * string * string
-
(* Return the position of the last occurrence of s1 in s2, or -1 if not
found. *)
Index: camlzip-1.05/zlibstubs.c
===================================================================
--- camlzip-1.05.orig/zlibstubs.c
+++ camlzip-1.05/zlibstubs.c
@@ -168,7 +168,7 @@ value camlzip_inflateEnd(value vzs)
value camlzip_update_crc32(value crc, value buf, value pos, value len)
{
- return caml_copy_int32(crc32((uint32) Int32_val(crc),
+ return caml_copy_int32(crc32((uint32_t) Int32_val(crc),
&Byte_u(buf, Long_val(pos)),
Long_val(len)));
}
|