[Github-comments] [geany/geany-plugins] New plugin 'workbench': initial commit. (Follow-up/clean PR) (#601)
LarsGit223
notifications at xxxxx
Thu Sep 21 16:27:56 UTC 2017
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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.geany.org/pipermail/github-comments/attachments/20170921/85efa262/attachment.html>
More information about the Github-comments
mailing list