aboutsummaryrefslogtreecommitdiffstats
path: root/src/cull.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2023-07-05 13:35:14 +0100
committerGravatar Sadie Powell2023-07-05 13:35:14 +0100
commitddd96f65a20fdbb43ba6ad66f392f4a5b0326eb7 (patch)
tree8661da2994ae709062c8fd2555b1a1361786168b /src/cull.cpp
parentAvoid iterator invalidation issues in ActionList::Run. (diff)
downloadinspircd++-ddd96f65a20fdbb43ba6ad66f392f4a5b0326eb7.tar.gz
inspircd++-ddd96f65a20fdbb43ba6ad66f392f4a5b0326eb7.tar.bz2
inspircd++-ddd96f65a20fdbb43ba6ad66f392f4a5b0326eb7.zip
Fix an indentation issue in CullList::Apply.
Diffstat (limited to 'src/cull.cpp')
-rw-r--r--src/cull.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cull.cpp b/src/cull.cpp
index b2cf536a5..d8b645dc2 100644
--- a/src/cull.cpp
+++ b/src/cull.cpp
@@ -111,8 +111,8 @@ void CullList::Apply()
for (auto* c : culled)
{
#ifdef INSPIRCD_ENABLE_RTTI
- ServerInstance->Logs.Debug("CULLLIST", "Deleting {} @{}", typeid(*c).name(),
- fmt::ptr(c));
+ ServerInstance->Logs.Debug("CULLLIST", "Deleting {} @{}", typeid(*c).name(),
+ fmt::ptr(c));
#endif
delete c;
}