diff options
| author | Mark Johnston <markj@FreeBSD.org> | 2022-03-07 16:18:40 +0000 |
|---|---|---|
| committer | Mark Johnston <markj@FreeBSD.org> | 2022-04-18 16:38:54 +0000 |
| commit | 6955dbde7ad6eb0d6674bf461882f20143c24e8a (patch) | |
| tree | dac09d050d448a1d1984c0bc77cddf6cdfa83b81 | |
| parent | e3d976742cd7c65553ead400452d2e3c9c2cbd1d (diff) | |
| -rw-r--r-- | cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c b/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c index b3b4c1f7168f..01b18093443b 100644 --- a/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c +++ b/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c @@ -1333,7 +1333,7 @@ resurrect_types(ctf_header_t *h, tdata_t *td, tdesc_t **tdarr, int tdsize, tdp->t_fndef->fn_args[i] = tdarr[argid]; } - dptr = roundup2(dptr, 4); + dptr = (caddr_t) roundup2((uintptr_t) dptr, 4); break; case CTF_K_RESTRICT: |
