summaryrefslogtreecommitdiff
path: root/lib/IRC.cc
diff options
context:
space:
mode:
authorPixel <Pixel>2001-11-15 14:52:43 +0000
committerPixel <Pixel>2001-11-15 14:52:43 +0000
commit3f720784d55707024fff675a5238fde0168d1a40 (patch)
tree84a5b9843ede69aaf76cd9b791686b2a3ea7c3d7 /lib/IRC.cc
parent8694409f2a5531e9f3263e8a42248a3ca91ac14f (diff)
More work into TaskMan...
Diffstat (limited to 'lib/IRC.cc')
-rw-r--r--lib/IRC.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/IRC.cc b/lib/IRC.cc
index 3dfa1d1..bb7cbb6 100644
--- a/lib/IRC.cc
+++ b/lib/IRC.cc
@@ -158,9 +158,9 @@ ircmsg_t ircmsgs[MSG_COUNT] =
{ "ERR_USERSDONTMATCH", ERR_USERSDONTMATCH },
};
-Channel * Channel::start = NULL;
+Channel * Channel::start = 0;
-Channel::Channel(const String & Name, const String & Key) : next(NULL), prev(NULL) {
+Channel::Channel(const String & Name, const String & Key) : next(0), prev(0) {
next = start->next;
prev = start;
start = this;