diff options
| author | 2022-03-27 15:33:31 +0100 | |
|---|---|---|
| committer | 2022-03-27 15:41:28 +0100 | |
| commit | ed6e19bbd06cdec2a9d75e4c2c338d47d759eecf (patch) | |
| tree | 29d90503a51c54eafd0ba87bd34b961908d45b48 /src/modules/m_spanningtree/netburst.cpp | |
| parent | Merge branch 'insp3' into master. (diff) | |
Fix unsigned/const keyword ordering, remove unnecessary consts.
Diffstat (limited to 'src/modules/m_spanningtree/netburst.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/netburst.cpp | 2 |
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(' '); |
