diff options
Diffstat (limited to 'blacklist.c')
-rw-r--r-- | blacklist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/blacklist.c b/blacklist.c index 32e6105..324938a 100644 --- a/blacklist.c +++ b/blacklist.c @@ -737,7 +737,7 @@ int cBlacklists::GetNewID() cMutexLock BlacklistLock(this); cBlacklist *l = (cBlacklist *)First(); while (l) { - newID = max(newID, l->ID); + newID = std::max(newID, l->ID); l = (cBlacklist *)l->Next(); } return newID+1; |