diff options
author | default <nobody@localhost> | 2022-11-28 10:46:42 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2022-11-28 10:46:42 +0100 |
commit | 07fec7127326cf02d50bd148581908d51cc697f6 (patch) | |
tree | c62856673c0e80a71782fa3bd4f8452e5132638e /snac.h | |
parent | 9c136dacdf790fdfe30d1c48ad9b03add206bf73 (diff) |
Upgraded followers to the new db.
Diffstat (limited to 'snac.h')
-rw-r--r-- | snac.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -62,9 +62,9 @@ d_char *index_list_desc(const char *fn, int max); int object_del(const char *id); int object_del_if_unref(const char *id); -int follower_add(snac *snac, char *actor, char *msg); -int follower_del(snac *snac, char *actor); -int follower_check(snac *snac, char *actor); +int follower_add(snac *snac, const char *actor); +int follower_del(snac *snac, const char *actor); +int follower_check(snac *snac, const char *actor); d_char *follower_list(snac *snac); double timeline_mtime(snac *snac); |