aboutsummaryrefslogtreecommitdiff
path: root/src/rss.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/rss.h')
-rw-r--r--src/rss.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rss.h b/src/rss.h
index c2b6a49..87d064f 100644
--- a/src/rss.h
+++ b/src/rss.h
@@ -1,13 +1,13 @@
#ifndef RSS_H
#define RSS_H
-struct json_object_s;
+typedef struct cJSON cJSON;
struct TransmissionSession;
typedef struct {
char *title;
char *link;
- struct json_object_s *json_data;
+ cJSON *json_data;
} TrackedRss;
int add_rss(const char *name, char *url, char *rss_config_dir, const char *start_after);