diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/github.c | 2 | ||||
-rw-r--r-- | src/github_types.c | 2 | ||||
-rw-r--r-- | src/github_types.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/github.c b/src/github.c index 18bd992..38c28a0 100644 --- a/src/github.c +++ b/src/github.c @@ -8,7 +8,7 @@ #include <stdlib.h> #include <string.h> -#include <cJSON.h> +#include <cjson/cJSON.h> #include <curl/curl.h> #include "queries/identity.h" diff --git a/src/github_types.c b/src/github_types.c index 878758d..88f495c 100644 --- a/src/github_types.c +++ b/src/github_types.c @@ -6,7 +6,7 @@ #include <stdlib.h> #include <string.h> -#include <cJSON.h> +#include <cjson/cJSON.h> #include "github_types.h" diff --git a/src/github_types.h b/src/github_types.h index 90a52a9..8f3e273 100644 --- a/src/github_types.h +++ b/src/github_types.h @@ -5,7 +5,7 @@ #ifndef GITHUB_TYPES_H #define GITHUB_TYPES_H -#include <cJSON.h> +#include <cjson/cJSON.h> char *identity_from_json(const cJSON *root); |