1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 10:36:38 +02:00

Fix not setting the correct compile flags on modules and fix the resulting warnings

This commit is contained in:
Adam
2013-07-20 02:55:25 -04:00
parent 492eac20a8
commit 6db0186947
16 changed files with 53 additions and 50 deletions
+1 -1
View File
@@ -279,7 +279,7 @@ EventReturn OnDatabaseReadMetadata(ChannelInfo *ci, const Anope::string &key, co
ci->Extend<bool>(params[i]);
else if (params[0].equals_ci("TTB"))
{
for (unsigned j = 1, end = params.size(); j < end &&& kd; j += 2)
for (unsigned j = 1, end = params.size(); j < end && kd; j += 2)
{
if (params[j].equals_ci("BOLDS"))
kd->ttb[0] = params[j + 1].is_pos_number_only() ? convertTo<int16_t>(params[j + 1]) : 0;