On 11/01/2022 15:12, Juergen Gross wrote:
> +static int socket_write(int fd, const void *buf, size_t nbytes)
> +{
> + return lwip_write(fd, (void *)buf, nbytes);This void cast was bogus before, and can be dropped. lwip_write() already takes a const pointer. ~Andrew
