SF.net SVN: geany:[5589] trunk/src/symbols.c

ntrel at users.sourceforge.net ntrel at xxxxx
Mon Mar 14 17:37:44 UTC 2011


Revision: 5589
          http://geany.svn.sourceforge.net/geany/?rev=5589&view=rev
Author:   ntrel
Date:     2011-03-14 17:37:44 +0000 (Mon, 14 Mar 2011)

Log Message:
-----------
Fix sign warning in tag_hash().

Modified Paths:
--------------
    trunk/src/symbols.c

Modified: trunk/src/symbols.c
===================================================================
--- trunk/src/symbols.c	2011-03-13 13:49:29 UTC (rev 5588)
+++ trunk/src/symbols.c	2011-03-14 17:37:44 UTC (rev 5589)
@@ -1186,7 +1186,7 @@
 static guint tag_hash(gconstpointer v)
 {
 	const TMTag *tag = v;
-	const signed char *p;
+	const gchar *p;
 	guint32 h = 5381;
 
 	h = (h << 5) + h + tag->type;


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list