aboutsummaryrefslogtreecommitdiff
path: root/lib/map.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/map.c')
-rw-r--r--lib/map.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/map.c b/lib/map.c
index bbede97..c16ecd0 100644
--- a/lib/map.c
+++ b/lib/map.c
@@ -1,5 +1,5 @@
/* This file is part of Eclat.
- Copyright (C) 2012-2015 Sergey Poznyakoff.
+ Copyright (C) 2012-2018 Sergey Poznyakoff.
Eclat is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -323,7 +323,7 @@ eclat_map_foreach(int (*fun)(struct eclat_map *, void *), void *data)
cl.fun = fun;
cl.data = data;
- grecs_symtab_enumerate(openmap_symtab, map_foreach, &cl);
+ grecs_symtab_foreach(openmap_symtab, map_foreach, &cl);
}
void
@@ -348,7 +348,7 @@ drv_help(void *data, void *unused)
void
eclat_map_confhelp()
{
- grecs_symtab_enumerate(mapdrv_symtab, drv_help, NULL);
+ grecs_symtab_foreach(mapdrv_symtab, drv_help, NULL);
}
int

Return to:

Send suggestions and report system problems to the System administrator.