[geany/geany] 5ebed2: Fix incorrect variadic argument type fetch (oops)

Colomban Wendling git-noreply at xxxxx
Sun Jun 21 12:23:44 UTC 2015


Branch:      refs/heads/master
Author:      Colomban Wendling <ban at herbesfolles.org>
Committer:   Colomban Wendling <ban at herbesfolles.org>
Date:        Sun, 21 Jun 2015 12:23:44 UTC
Commit:      5ebed27d4bc691908825a4af06605215cee6206e
             https://github.com/geany/geany/commit/5ebed27d4bc691908825a4af06605215cee6206e

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).


More information about the Commits mailing list