aboutsummaryrefslogtreecommitdiff
path: root/swaybar/ipc.c
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2019-01-23 18:00:14 +0000
committerFurkan Sahin <furkan-dev@proton.me>2019-01-23 18:00:14 +0000
commitf1c1d615e45bd34e6c5ce43f228366cdf8b519da (patch)
treef2ce175495292521d5c499893364763be0267f88 /swaybar/ipc.c
parent514f510e291ccf6fb50b1b83b5ecbaa7cb02b59a (diff)
Make json-c include respect pkg-config --cflags
json-c.pc contains `Cflags: -I${includedir}/json-c`, so `<json-c/json.h>` won't be found unless the parent directory is searched by default.
Diffstat (limited to 'swaybar/ipc.c')
-rw-r--r--swaybar/ipc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/swaybar/ipc.c b/swaybar/ipc.c
index bf1d0f43..1cc55b43 100644
--- a/swaybar/ipc.c
+++ b/swaybar/ipc.c
@@ -3,7 +3,7 @@
#include <stdio.h>
#include <string.h>
#include <strings.h>
-#include <json-c/json.h>
+#include <json.h>
#include "swaybar/config.h"
#include "swaybar/ipc.h"
#include "config.h"