diff --git a/common/ptimer.cpp b/common/ptimer.cpp index 9be3594d5..77aa034af 100644 --- a/common/ptimer.cpp +++ b/common/ptimer.cpp @@ -347,7 +347,7 @@ bool PTimerList::Load(Database *db) { //if it expired allready, dont bother. cur = new PersistentTimer(_char_id, type, start_time, timer_time, enabled); - if(!cur->Expired(NULL, false)) + if(!cur->Expired(NULL)) _list[type] = cur; else delete cur; diff --git a/common/rulesys.cpp b/common/rulesys.cpp index 54ef3bf77..5d0b1a078 100644 --- a/common/rulesys.cpp +++ b/common/rulesys.cpp @@ -292,7 +292,7 @@ bool RuleManager::LoadRules(Database *db, const char *ruleset) { { safe_delete_array(query); while((row = mysql_fetch_row(result))) { - if(!SetRule(row[0], row[1],NULL, false)) + if(!SetRule(row[0], row[1], NULL, false)) _log(RULES__ERROR, "Unable to interpret rule record for %s", row[0]); } mysql_free_result(result);