From ee3139875a067ee1c33c64458f0df869a58fecbd Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sat, 16 Jan 2021 19:14:35 +0100 Subject: [PATCH] vma-iter: Port to 64-bit Haiku. * lib/vma-iter.c (vma_iterate): Adapt to changed signature of get_next_area_info. --- ChangeLog | 6 ++++++ lib/vma-iter.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 6b6d360fbd..d52dca566b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2021-01-16 Bruno Haible + + vma-iter: Port to 64-bit Haiku. + * lib/vma-iter.c (vma_iterate): Adapt to changed signature of + get_next_area_info. + 2021-01-15 Bruno Haible doc: Update doc about realpath. diff --git a/lib/vma-iter.c b/lib/vma-iter.c index f3bfec4f4b..809828b765 100644 --- a/lib/vma-iter.c +++ b/lib/vma-iter.c @@ -1459,7 +1459,7 @@ vma_iterate (vma_iterate_callback_fn callback, void *data) /* Use the BeOS specific API. */ area_info info; - int32 cookie; + ssize_t cookie; cookie = 0; while (get_next_area_info (0, &cookie, &info) == B_OK) -- 2.11.4.GIT