From 2b029213f97910692d1e48e097cc5cc1ad3b44b7 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 9 Nov 2019 12:14:29 +0100 Subject: Fix various clang-tidy warnings --- pugl/detail/x11.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pugl/detail/x11.c') 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) { -- cgit v1.2.1