aboutsummaryrefslogtreecommitdiffstats
path: root/src/snomasks.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/snomasks.cpp')
-rw-r--r--src/snomasks.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/snomasks.cpp b/src/snomasks.cpp
index cf1f2554a..296525534 100644
--- a/src/snomasks.cpp
+++ b/src/snomasks.cpp
@@ -147,6 +147,6 @@ std::string Snomask::GetDescription(char letter) const
if (!Description.empty())
ret += Description;
else
- ret += std::string("SNO-") + (char)tolower(letter);
+ ret += InspIRCd::Format("SNO-%c", tolower(letter));
return ret;
}