aboutsummaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-03-27 15:33:31 +0100
committerGravatar Sadie Powell2022-03-27 15:41:28 +0100
commited6e19bbd06cdec2a9d75e4c2c338d47d759eecf (patch)
tree29d90503a51c54eafd0ba87bd34b961908d45b48 /src/modules
parentMerge branch 'insp3' into master. (diff)
Fix unsigned/const keyword ordering, remove unnecessary consts.
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_spanningtree/netburst.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/netburst.cpp b/src/modules/m_spanningtree/netburst.cpp
index aa801dbfb..d4f4c588c 100644
--- a/src/modules/m_spanningtree/netburst.cpp
+++ b/src/modules/m_spanningtree/netburst.cpp
@@ -53,7 +53,7 @@ public:
/** Add a mode to the message
*/
- void push_mode(const char modeletter, const std::string& mask)
+ void push_mode(char modeletter, const std::string& mask)
{
push_raw(modeletter);
params.push_back(' ');