From c0ccb7456912bc0b7688099e3a0353086699822a Mon Sep 17 00:00:00 2001 From: nekobit Date: Sun, 3 Jul 2022 23:14:06 +0000 Subject: [PATCH] Remove temporary error code FossilOrigin-Name: 9a6c646a13f89e2e422b5ead0067ab597161a349ddf3003a88fe40dbb5097400 --- src/status.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/status.c b/src/status.c index b5a6103..1baf12f 100644 --- a/src/status.c +++ b/src/status.c @@ -516,8 +516,7 @@ char* make_mentions_local(char* content) &error, &erroffset, NULL); if (re == NULL) { - char* v; - easprintf(&v, "Couldn't parse regex at offset %d: %s\n", error, REGEX_MENTION + erroffset); + fprintf(stderr, "Couldn't parse regex at offset %d: %s\n", error, REGEX_MENTION + erroffset); pcre2_code_free(re); return NULL; }