[linux] Add missing return statement to linux_poll()

Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown
2025-04-27 23:28:51 +01:00
parent bd4ca67cf4
commit 024439f339

View File

@@ -225,6 +225,7 @@ int __asmcall linux_poll ( struct pollfd *fds, unsigned int nfds,
ret = poll ( fds, nfds, timeout );
if ( ret == -1 )
linux_errno = errno;
return ret;
}
/**