Re: [PATCH 10/13] selftests: net: Work around build error seen with -Werror

Guenter Roeck <[email protected]> Thu, 4 Dec 2025 09:21:57 -0800
Newsgroups gmane.linux.kernel,gmane.comp.emulators.wine.devel,gmane.linux.network,gmane.linux.kernel.bpf
Message-ID <[email protected]>
On Thu, Dec 04, 2025 at 08:30:29AM -0800, Jakub Kicinski wrote:
> On Thu,  4 Dec 2025 08:17:24 -0800 Guenter Roeck wrote:
> > -	write(fd, msg, sizeof(msg));
> > +	if (write(fd, msg, sizeof(msg)))
> > +		;
> 
> At least add an perror here ?

Makes sense. I'll do that in all patches unless someone has a better idea.

Thanks,
Guenter