summaryrefslogtreecommitdiff
path: root/epgsearchext.c
diff options
context:
space:
mode:
Diffstat (limited to 'epgsearchext.c')
-rw-r--r--epgsearchext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epgsearchext.c b/epgsearchext.c
index 06d7c3d..4a5f7e6 100644
--- a/epgsearchext.c
+++ b/epgsearchext.c
@@ -1538,7 +1538,7 @@ int cSearchExts::GetNewID()
int newID = -1;
cSearchExt *l = (cSearchExt *)First();
while (l) {
- newID = max(newID, l->ID);
+ newID = std::max(newID, l->ID);
l = (cSearchExt *)l->Next();
}
return newID+1;