diff options
author | C. McEnroe | 2021-06-07 00:09:58 -0400 |
---|---|---|
committer | C. McEnroe | 2021-06-09 11:56:35 -0400 |
commit | e066a954f5b638103102250d87661d91f3c9f3f0 (patch) | |
tree | ac6694692bcea35ca8b0a29318cbbfcf5a849428 /url.c | |
parent | 5c3cd59af6550d6f8d74487c1e46cdb0b171ff7d (diff) |
Replace catf with seprintf
Diffstat (limited to 'url.c')
-rw-r--r-- | url.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/url.c b/url.c index 21f946c..72cad0a 100644 --- a/url.c +++ b/url.c @@ -98,7 +98,7 @@ static void push(uint id, const char *nick, const char *str, size_t len) { char buf[1024]; snprintf(buf, sizeof(buf), "%.*s", (int)len, str); - styleStrip(&(struct Cat) { url->url, len + 1, 0 }, buf); + styleStrip(url->url, len + 1, buf); } void urlScan(uint id, const char *nick, const char *mesg) { |