I checked that before, they are fine. That are all calls to
```foreach_slist```, e.g.
```
static guint wb_project_get_file_count(WB_PROJECT *prj)
{
GSList *elem;
guint filenum = 0;
foreach_slist(elem, prj->directories)
{
filenum += ((WB_PROJECT_DIR *)elem->data)->file_count;
}
return filenum;
}
```
But ```elem``` gets assigned the elements from ```prj->directories```, so
everything is OK. Looks like ```ccpcheck``` is having a problem here with
```foreach_slist```.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/601#issuecomment-331210206