Re: [PATCH v3 3/3] stackchk: Fixed 32bit pointers

2021-03-19 Thread Gedare Bloom
This one is also looks fine by inspection, although I don't immediately see why it is needed. On Fri, Mar 19, 2021 at 9:35 AM Stephen Clark wrote: > > Using 32bit types like uint32_t for pointers creates issues on 64 bit > architectures like AArch64. Replaced occurrences of these with uintptr_t,

[PATCH v3 3/3] stackchk: Fixed 32bit pointers

2021-03-19 Thread Stephen Clark
Using 32bit types like uint32_t for pointers creates issues on 64 bit architectures like AArch64. Replaced occurrences of these with uintptr_t, which will work for both 32 and 64 bit architectures. --- cpukit/libmisc/stackchk/check.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --