diff options
author | Sadie Powell <sadie@witchery.services> | 2025-03-22 08:43:38 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-03-22 08:43:38 +0000 |
commit | 1adbce61cb0b2f8edb99c0704a60d23dc8974f43 (patch) | |
tree | 2cc9ed728a8116f10891226dcd45c1f166a703d5 /modules | |
parent | fe60c9a085f8020c729dd44a600839d5fd5f3bae (diff) |
Fix a semicolon that was missing from the previous commit.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/global/gl_queue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/global/gl_queue.cpp b/modules/global/gl_queue.cpp index 2f47c2bed..7ac4605fa 100644 --- a/modules/global/gl_queue.cpp +++ b/modules/global/gl_queue.cpp @@ -91,7 +91,7 @@ private: global->ClearQueue(source.nc); source.Reply(_("Your message queue has been cleared.")); - Log(LOG_ADMIN, source, this) << "to clear their queue." + Log(LOG_ADMIN, source, this) << "to clear their queue."; } void DoDel(CommandSource &source, const Anope::string &what) |