diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2022-11-29 18:47:17 -0500 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2022-11-29 18:47:17 -0500 |
commit | ea9b7c9415544bc7e74bbaa90341694f5621b791 (patch) | |
tree | 57de060fef801a21ca8ca82f5c05774e37548e70 /src/lpm.c | |
parent | fc0c4ed9a3103e0e6534311923668879fc8e0875 (diff) | |
download | lite-xl-plugin-manager-ea9b7c9415544bc7e74bbaa90341694f5621b791.tar.gz lite-xl-plugin-manager-ea9b7c9415544bc7e74bbaa90341694f5621b791.zip |
Removed superfluous include.
Diffstat (limited to 'src/lpm.c')
-rw-r--r-- | src/lpm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,6 @@ #include <mbedtls/ctr_drbg.h> #include <mbedtls/ssl.h> #include <mbedtls/net.h> -#include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> @@ -30,6 +29,7 @@ #include <fileapi.h> #else #include <netdb.h> + #include <sys/socket.h> #define MAX_PATH PATH_MAX #endif |