Re: char-h-c23: Fix compilation error on OmniOS.

2025-01-24 Thread Bruno Haible via Gnulib discussion list
Hi Collin, Thanks for the fix. > > $ gcc --version > > gcc (OmniOS 151052/14.2.0-il-1) 14.2.0 > > I was wondering why this failure didn't occur in the GitHub CI. It is > because the CI uses GCC 13 where it is a warning. In GCC 14 they made it > an error by default (-Werror=incompatible-p

Re: char-h-c23: Fix compilation error on OmniOS.

2025-01-23 Thread Collin Funk
Collin Funk writes: > $ gcc --version > gcc (OmniOS 151052/14.2.0-il-1) 14.2.0 I was wondering why this failure didn't occur in the GitHub CI. It is because the CI uses GCC 13 where it is a warning. In GCC 14 they made it an error by default (-Werror=incompatible-pointer-types) [1]. Col