From 240f9ebf8445c6e9a569b40876db0681ffc8a1d0 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Sun, 2 Sep 2018 16:13:00 -0400 Subject: Use PascalCase for constants Begone underscores. --- irc.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'irc.c') diff --git a/irc.c b/irc.c index fa858b4..8df3356 100644 --- a/irc.c +++ b/irc.c @@ -108,8 +108,8 @@ void ircFmt(const char *format, ...) { if (!buf) err(EX_OSERR, "vasprintf"); if (self.verbose) { uiFmt( - TAG_VERBOSE, UI_COLD, - "\3%d<<<\3 %.*s", IRC_WHITE, len - 2, buf + TagVerbose, UICold, + "\3%d<<<\3 %.*s", IRCWhite, len - 2, buf ); } ircWrite(buf, len); @@ -133,8 +133,8 @@ void ircRead(void) { crlf[0] = '\0'; if (self.verbose) { uiFmt( - TAG_VERBOSE, UI_COLD, - "\3%d>>>\3 %s", IRC_GRAY, line + TagVerbose, UICold, + "\3%d>>>\3 %s", IRCGray, line ); } handle(line); -- cgit 1.4.1