fix: lint

This commit is contained in:
Alex 2023-05-29 09:24:33 +02:00
parent 13a9c4a08b
commit 097cbc0c53
2 changed files with 2 additions and 2 deletions

View File

@ -1,10 +1,10 @@
#pragma once
#include <fcntl.h>
#include <giomm.h>
#include <spdlog/spdlog.h>
#include <sys/wait.h>
#include <unistd.h>
#include <fcntl.h>
#ifdef __linux__
#include <sys/prctl.h>

View File

@ -188,7 +188,7 @@ void waybar::modules::Network::createEventSocket() {
throw std::runtime_error("Can't create epoll");
}
{
ev_fd_ = eventfd(0, EFD_NONBLOCK|EFD_CLOEXEC);
ev_fd_ = eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC);
struct epoll_event event;
memset(&event, 0, sizeof(event));
event.events = EPOLLIN | EPOLLET;