snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit 5b1d2bebe99747315d214f7726bd5328c5910446
parent 4b6e1df90717e2de9c31bb693a8e50b403d73d6c
Author: Alex Schroeder <alex@gnu.org>
Date:   Sun,  4 Dec 2022 10:23:48 +0100

Fix arguments in callto xs_fmt

Without this, db_upgrade segfaults.

Diffstat:
Mdata.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/data.c b/data.c @@ -706,7 +706,7 @@ int follower_add(snac *snac, const char *actor) { int ret = object_user_cache_add(snac, actor, "followers"); - snac_debug(snac, 2, xs_fmt("follower_add %s %s", actor)); + snac_debug(snac, 2, xs_fmt("follower_add %s", actor)); return ret == -1 ? 500 : 200; }