summaryrefslogtreecommitdiff
path: root/data.c
diff options
context:
space:
mode:
authorGravatar default2023-07-14 08:47:20 +0200
committerGravatar default2023-07-14 08:47:20 +0200
commiteee19168580fdf228b4829da89725d394159fd60 (patch)
tree3fe88b26fedb2cb519d25646c398b78a10540253 /data.c
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.
Diffstat (limited to 'data.c')
-rw-r--r--data.c4
1 files changed, 2 insertions, 2 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 */