summaryrefslogtreecommitdiff
path: root/include/protocol.h
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2014-01-04 19:43:04 +0100
committerAttila Molnar <attilamolnar@hush.com>2014-01-04 19:43:04 +0100
commita500ec70bb82151c8fcf7443b4645640233952e8 (patch)
treee3068140d44bed3c8e35a0d24846bc40dcb14330 /include/protocol.h
parentb5bc73e31026ee2087f0ceb5c7d9f99bf3c288a6 (diff)
Change type of snomask parameter to char in ProtocolInterface::SendSNONotice()
Diffstat (limited to 'include/protocol.h')
-rw-r--r--include/protocol.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/protocol.h b/include/protocol.h
index b077a4f47..4afb0bf59 100644
--- a/include/protocol.h
+++ b/include/protocol.h
@@ -104,7 +104,7 @@ class CoreExport ProtocolInterface
* @param snomask The snomask required for the message to be sent.
* @param text The message to send.
*/
- virtual void SendSNONotice(const std::string &snomask, const std::string &text) { }
+ virtual void SendSNONotice(char snomask, const std::string& text) { }
/** Send raw data to a remote client.
* @param target The user to push data to.