diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2020-08-27 00:33:21 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-30 09:43:49 +0200 |
commit | bc1dc2b68874322370c62bd924bf679567a567eb (patch) | |
tree | ec2e31c50de984dbb1bb075b0b7af578fd72c01d | |
parent | 184b454e2f1bf9fe9639cb3f57b4294c6a2a32ec (diff) | |
download | serenity-bc1dc2b68874322370c62bd924bf679567a567eb.zip |
IRCClient: Unbreak building with extra debug macros
-rw-r--r-- | Applications/IRCClient/IRCClient.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Applications/IRCClient/IRCClient.cpp b/Applications/IRCClient/IRCClient.cpp index 628ca9e546..e0346b9703 100644 --- a/Applications/IRCClient/IRCClient.cpp +++ b/Applications/IRCClient/IRCClient.cpp @@ -39,7 +39,9 @@ #include <stdio.h> #include <strings.h> -#define IRC_DEBUG +#ifndef IRC_DEBUG +# define IRC_DEBUG +#endif enum IRCNumeric { RPL_WELCOME = 1, |