diff options
| author | Konstantin Belousov <kib@FreeBSD.org> | 2023-07-25 12:54:45 +0000 |
|---|---|---|
| committer | Konstantin Belousov <kib@FreeBSD.org> | 2023-08-21 14:16:42 +0000 |
| commit | d60130bf32a3c35417f276507dcdfa569397dae3 (patch) | |
| tree | f31333bdfafa36f9e8e5160d82f525d1d724a523 /libexec/rtld-elf/rtld_malloc.c | |
| parent | 6bb7f05850efceb01a7050e3c0fd86f9539c0071 (diff) | |
Diffstat (limited to 'libexec/rtld-elf/rtld_malloc.c')
| -rw-r--r-- | libexec/rtld-elf/rtld_malloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/rtld-elf/rtld_malloc.c b/libexec/rtld-elf/rtld_malloc.c index 1246238b3941..ac8af4d6b6e1 100644 --- a/libexec/rtld-elf/rtld_malloc.c +++ b/libexec/rtld-elf/rtld_malloc.c @@ -75,8 +75,8 @@ static caddr_t pagepool_start, pagepool_end; union overhead { union overhead *ov_next; /* when free */ struct { - u_char ovu_magic; /* magic number */ - u_char ovu_index; /* bucket # */ + uint16_t ovu_index; /* bucket # */ + uint8_t ovu_magic; /* magic number */ } ovu; #define ov_magic ovu.ovu_magic #define ov_index ovu.ovu_index |
