Skip to content

Commit

Permalink
Fix sys/poll.h -> poll.h
Browse files Browse the repository at this point in the history
See https://pubs.opengroup.org/onlinepubs/7908799/xsh/poll.h.html, or the other files in this project referencing `poll.h`:
```console
% grep -r 'poll.h'                                                    
libmariadb/ma_net.c:#include <poll.h>
libmariadb/mariadb_lib.c:#include <poll.h>
plugins/pvio/pvio_socket.c:#include <sys/poll.h>
unittest/libmariadb/async.c:#include <poll.h>
```
  • Loading branch information
giordano authored and 9EOR9 committed Apr 29, 2024
1 parent dab5973 commit 89d11c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/pvio/pvio_socket.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
#include <sys/un.h>
#endif
#ifdef HAVE_POLL
#include <sys/poll.h>
#include <poll.h>
#endif
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
Expand Down

0 comments on commit 89d11c8

Please sign in to comment.