about summary refs log tree commit diff
path: root/irc.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-02-02 03:34:05 -0500
committerJune McEnroe <june@causal.agency>2020-02-02 03:34:05 -0500
commit052cd2ed2688867f8b980d283ea3aa410d9dd6aa (patch)
tree1cc9ec89890a3fe3e1f8085fcbd8e3f19ffa32b9 /irc.c
parentAdd idColors (diff)
downloadcatgirl-052cd2ed2688867f8b980d283ea3aa410d9dd6aa.tar.gz
catgirl-052cd2ed2688867f8b980d283ea3aa410d9dd6aa.zip
Remove style string macros
Diffstat (limited to 'irc.c')
-rw-r--r--irc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/irc.c b/irc.c
index f07fcc8..d8c6a21 100644
--- a/irc.c
+++ b/irc.c
@@ -105,7 +105,7 @@ static void debug(char dir, const char *line) {
 	if (!self.debug) return;
 	size_t len = strcspn(line, "\r\n");
 	uiFormat(
-		Debug, Cold, NULL, C"%d%c%c"C" %.*s",
+		Debug, Cold, NULL, "\3%d%c%c\3 %.*s",
 		Gray, dir, dir, (int)len, line
 	);
 	if (!isatty(STDERR_FILENO)) {