You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-ml/camlpdf/files/ocaml43.patch

14 lines
513 B

Index: camlpdf-2.1.1/flatestubs.c
===================================================================
--- camlpdf-2.1.1.orig/flatestubs.c
+++ camlpdf-2.1.1/flatestubs.c
@@ -170,7 +170,7 @@ value camlzip_inflateEnd(value vzs)
value camlzip_update_crc32(value crc, value buf, value pos, value len)
{
- return copy_int32(crc32((uint32) Int32_val(crc),
+ return copy_int32(crc32((uint32_t) Int32_val(crc),
&Byte_u(buf, Long_val(pos)),
Long_val(len)));
}