diff options
author | Username404-59 <[email protected]> | 2024-05-08 00:13:58 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2024-05-07 23:13:58 +0100 |
commit | 57a12476deef1b3e9967896cd8b3676131193865 (patch) | |
tree | 859eb3460a9d307f7bedeb453f24754b0b881df1 | |
parent | 601210878dc5d05f195753dccf0cafa3187c6ad6 (diff) | |
download | Hyprland-57a12476deef1b3e9967896cd8b3676131193865.tar.gz Hyprland-57a12476deef1b3e9967896cd8b3676131193865.zip |
internal: Add missing errno.h include to SdDaemon.cpp (#5938)
Fixes clang
-rw-r--r-- | src/helpers/SdDaemon.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/helpers/SdDaemon.cpp b/src/helpers/SdDaemon.cpp index 0835637a..d5df3121 100644 --- a/src/helpers/SdDaemon.cpp +++ b/src/helpers/SdDaemon.cpp @@ -4,6 +4,7 @@ #include <fcntl.h> #include <unistd.h> +#include <errno.h> #include <sys/socket.h> #include <sys/un.h> |