diff options
author | Sadie Powell <sadie@witchery.services> | 2024-01-06 23:18:20 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-01-06 23:19:18 +0000 |
commit | 688ecf1c1dba8a10bcef2d03c62d43f709facddb (patch) | |
tree | f69deb4e51b2a893a608437054c12fbd06409778 | |
parent | c0453cfec106b33ba9974e5ebe707ff82a476dac (diff) |
Fix an oversight in the mysql module.
-rw-r--r-- | modules/extra/m_mysql.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/extra/m_mysql.cpp b/modules/extra/m_mysql.cpp index f2c4c6285..7a7adc943 100644 --- a/modules/extra/m_mysql.cpp +++ b/modules/extra/m_mysql.cpp @@ -131,7 +131,7 @@ public: */ Mutex Lock; - MySQLService(Module *o, const Anope::string &n, const Anope::string &d, const Anope::string &s, const Anope::string &u, const Anope::string &p, int po); + MySQLService(Module *o, const Anope::string &n, const Anope::string &d, const Anope::string &s, const Anope::string &u, const Anope::string &p, unsigned int po); ~MySQLService(); |