Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up OCaml ${{ matrix.ocaml-compiler }}
uses: avsm/setup-ocaml@v2
uses: avsm/setup-ocaml@v3
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
dune-cache: true
Expand Down
4 changes: 2 additions & 2 deletions src/ml_gdkpixbuf.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ CAMLprim value ml_gdk_pixbuf_set_marshal_use_rle (value v)
return Val_unit;
}

static void ml_GdkPixbuf_serialize (value v, unsigned long *wsize_32, unsigned long *wsize_64)
static void ml_GdkPixbuf_serialize (value v, uintnat *wsize_32, uintnat *wsize_64)
{
GdkPixbuf *pb = GdkPixbuf_val(v);
GdkPixdata pixdata;
Expand All @@ -75,7 +75,7 @@ static void ml_GdkPixbuf_serialize (value v, unsigned long *wsize_32, unsigned l
*wsize_64 = 8;
}

static unsigned long ml_GdkPixbuf_deserialize (void *dst)
static uintnat ml_GdkPixbuf_deserialize (void *dst)
{
GError *error = NULL;
GdkPixdata pixdata;
Expand Down
Loading