Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Sun, 21 Jun 2015 12:23:44 UTC Commit: 5ebed27d4bc691908825a4af06605215cee6206e https://github.com/geany/geany/commit/5ebed27d4bc691908825a4af06605215cee620...
Log Message: ----------- Fix incorrect variadic argument type fetch (oops)
Modified Paths: -------------- src/symbols.c
Modified: src/symbols.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -587,7 +587,7 @@ tag_list_add_groups(GtkTreeStore *tree_store, ...) for (; iter = va_arg(args, GtkTreeIter*), iter != NULL;) { gchar *title = va_arg(args, gchar*); - guint icon_id = va_arg(args, gchar *); + guint icon_id = va_arg(args, guint); GdkPixbuf *icon = NULL;
if (icon_id < N_ICONS)
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).