diff options
author | David Robillard <d@drobilla.net> | 2019-11-09 12:14:29 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-11-09 12:15:17 +0100 |
commit | 2b029213f97910692d1e48e097cc5cc1ad3b44b7 (patch) | |
tree | bac32d9655b1ad95b25cc0c7c777c50e2f977801 /pugl/detail/x11.c | |
parent | 121bd7edc2ef105836304215d21aa733368f13f4 (diff) | |
download | pugl-2b029213f97910692d1e48e097cc5cc1ad3b44b7.tar.gz pugl-2b029213f97910692d1e48e097cc5cc1ad3b44b7.tar.bz2 pugl-2b029213f97910692d1e48e097cc5cc1ad3b44b7.zip |
Fix various clang-tidy warnings
Diffstat (limited to 'pugl/detail/x11.c')
-rw-r--r-- | pugl/detail/x11.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pugl/detail/x11.c b/pugl/detail/x11.c index 37280cd..847c092 100644 --- a/pugl/detail/x11.c +++ b/pugl/detail/x11.c @@ -123,7 +123,7 @@ puglPollEvents(PuglWorld* world, const double timeout) const int nfds = fd + 1; int ret = 0; fd_set fds; - FD_ZERO(&fds); + FD_ZERO(&fds); // NOLINT FD_SET(fd, &fds); if (timeout < 0.0) { |