diff options
| author | 2023-07-14 08:47:20 +0200 | |
|---|---|---|
| committer | 2023-07-14 08:47:20 +0200 | |
| commit | eee19168580fdf228b4829da89725d394159fd60 (patch) | |
| tree | 3fe88b26fedb2cb519d25646c398b78a10540253 /data.c | |
| parent | Merge pull request 'html.c: Don't let public get into timeline.html_' (#67) f... (diff) | |
| download | snac2-eee19168580fdf228b4829da89725d394159fd60.tar.gz snac2-eee19168580fdf228b4829da89725d394159fd60.tar.xz snac2-eee19168580fdf228b4829da89725d394159fd60.zip | |
Fixed prototypes.
Diffstat (limited to 'data.c')
| -rw-r--r-- | data.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -1068,7 +1068,7 @@ void timeline_update_indexes(snac *snac, const char *id) | |||
| 1068 | } | 1068 | } |
| 1069 | 1069 | ||
| 1070 | 1070 | ||
| 1071 | int timeline_add(snac *snac, char *id, char *o_msg) | 1071 | int 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 | ||
| 1083 | void timeline_admire(snac *snac, char *id, char *admirer, int like) | 1083 | void 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 */ |