Update client.cpp

This commit is contained in:
Alex 2022-01-24 09:22:47 +01:00 committed by GitHub
parent 65dd245362
commit c4cc7ae396
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,15 +14,12 @@ Ipc::~Ipc() {
if (fd_ > 0) {
// To fail the IPC header
if (write(fd_, "close-sway-ipc", 14) == -1) {
//std::runtime_error("Couldn't close Sway IPC through fd");
}
write(fd_, "close-sway-ipc", 14);
close(fd_);
fd_ = -1;
}
if (fd_event_ > 0) {
if (write(fd_event_, "close-sway-ipc", 14) == -1) {
}
write(fd_event_, "close-sway-ipc", 14);
close(fd_event_);
fd_event_ = -1;
}