aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_silence.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_silence.cpp')
-rw-r--r--src/modules/m_silence.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_silence.cpp b/src/modules/m_silence.cpp
index 703a17b43..651d705a1 100644
--- a/src/modules/m_silence.cpp
+++ b/src/modules/m_silence.cpp
@@ -83,7 +83,7 @@ class CommandSilence : public Command
{
// tidy up -- if a user's list is empty, theres no use having it
// hanging around in the user record.
- DELETE(sl);
+ delete sl;
user->Shrink("silence_list");
}
}
@@ -160,7 +160,7 @@ class ModuleSilence : public Module
user->GetExt("silence_list", sl);
if (sl)
{
- DELETE(sl);
+ delete sl;
user->Shrink("silence_list");
}
}