summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar default2023-07-14 08:47:20 +0200
committerGravatar default2023-07-14 08:47:20 +0200
commiteee19168580fdf228b4829da89725d394159fd60 (patch)
tree3fe88b26fedb2cb519d25646c398b78a10540253
parentMerge pull request 'html.c: Don't let public get into timeline.html_' (#67) f... (diff)
downloadsnac2-eee19168580fdf228b4829da89725d394159fd60.tar.gz
snac2-eee19168580fdf228b4829da89725d394159fd60.tar.xz
snac2-eee19168580fdf228b4829da89725d394159fd60.zip
Fixed prototypes.
-rw-r--r--data.c4
-rw-r--r--snac.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/data.c b/data.c
index 24a0bc8..7463af2 100644
--- a/data.c
+++ b/data.c
@@ -1068,7 +1068,7 @@ void timeline_update_indexes(snac *snac, const char *id)
1068} 1068}
1069 1069
1070 1070
1071int timeline_add(snac *snac, char *id, char *o_msg) 1071int timeline_add(snac *snac, const char *id, const xs_dict *o_msg)
1072/* adds a message to the timeline */ 1072/* adds a message to the timeline */
1073{ 1073{
1074 int ret = object_add(id, o_msg); 1074 int ret = object_add(id, o_msg);
@@ -1080,7 +1080,7 @@ int timeline_add(snac *snac, char *id, char *o_msg)
1080} 1080}
1081 1081
1082 1082
1083void timeline_admire(snac *snac, char *id, char *admirer, int like) 1083void timeline_admire(snac *snac, const char *id, const char *admirer, int like)
1084/* updates a timeline entry with a new admiration */ 1084/* updates a timeline entry with a new admiration */
1085{ 1085{
1086 /* if we are admiring this, add to both timelines */ 1086 /* if we are admiring this, add to both timelines */
diff --git a/snac.h b/snac.h
index 17511db..9052ce7 100644
--- a/snac.h
+++ b/snac.h
@@ -110,8 +110,8 @@ int timeline_get_by_md5(snac *snac, const char *md5, xs_dict **msg);
110int timeline_del(snac *snac, char *id); 110int timeline_del(snac *snac, char *id);
111xs_list *timeline_simple_list(snac *snac, const char *idx_name, int skip, int show); 111xs_list *timeline_simple_list(snac *snac, const char *idx_name, int skip, int show);
112xs_list *timeline_list(snac *snac, const char *idx_name, int skip, int show); 112xs_list *timeline_list(snac *snac, const char *idx_name, int skip, int show);
113int timeline_add(snac *snac, char *id, char *o_msg); 113int timeline_add(snac *snac, const char *id, const xs_dict *o_msg);
114void timeline_admire(snac *snac, char *id, char *admirer, int like); 114void timeline_admire(snac *snac, const char *id, const char *admirer, int like);
115 115
116xs_list *timeline_top_level(snac *snac, xs_list *list); 116xs_list *timeline_top_level(snac *snac, xs_list *list);
117xs_list *local_list(snac *snac, int max); 117xs_list *local_list(snac *snac, int max);