Re: [PATCH 10/13] selftests: net: Work around build error seen with -Werror
Jakub Kicinski <[email protected]> Thu, 4 Dec 2025 08:30:29 -0800
| Newsgroups | gmane.linux.network,gmane.linux.kernel,gmane.comp.emulators.wine.devel,gmane.linux.kernel.bpf |
|---|---|
| Message-ID | <[email protected]> |
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 ?