Also, some interesting messages from my compiler on mean settings:
```
CC workbench_la-wb_project.lo
../../../workbench/src/wb_project.c: In function 'wb_project_dir_rescan_int':
../../../workbench/src/wb_project.c:606:2: warning: conversion to 'gint' from
'guint' may change the sign of the result [-Wsign-conversion]
return filenum;
^
../../../workbench/src/wb_project.c: In function 'wb_project_dir_rescan':
../../../workbench/src/wb_project.c:701:12: warning: conversion to 'guint' from
'gint' may change the sign of the result [-Wsign-conversion]
filenum = wb_project_dir_rescan_int(prj, root);
^
../../../workbench/src/wb_project.c:707:2: warning: conversion to 'gint' from
'guint' may change the sign of the result [-Wsign-conversion]
return filenum;
^
CC workbench_la-sidebar.lo
../../../workbench/src/sidebar.c: In function
'sidebar_insert_workbench_bookmarks':
../../../workbench/src/sidebar.c:506:59: warning: unused parameter 'workbench'
[-Wunused-parameter]
static void sidebar_insert_workbench_bookmarks(WORKBENCH *workbench,
GtkTreeIter *iter, gint *position)
^
../../../workbench/src/sidebar.c: In function 'sidebar_reset_tree_store':
../../../workbench/src/sidebar.c:549:51: warning: unused parameter 'iter'
[-Wunused-parameter]
static void sidebar_reset_tree_store(GtkTreeIter *iter)
^
```
--
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/598#issuecomment-323642127