api: fix typo in comment

This commit is contained in:
Bert Belder 2019-06-24 12:47:58 +02:00
parent 8c98df30da
commit a11398b1c5
No known key found for this signature in database
GPG Key ID: 7A77887B2E2ED461

View File

@ -102,7 +102,7 @@ int epoll_ctl(HANDLE ephnd, int op, SOCKET sock, struct epoll_event* ev) {
return 0; return 0;
err: err:
/* On Linux, in the case of epoll_ctl_mod(), EBADF takes priority over other /* On Linux, in the case of epoll_ctl(), EBADF takes priority over other
* errors. Wepoll mimics this behavior. */ * errors. Wepoll mimics this behavior. */
err_check_handle(ephnd); err_check_handle(ephnd);
err_check_handle((HANDLE) sock); err_check_handle((HANDLE) sock);