Fix sign warning in tag_hash().

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5589 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Nick Treleaven 2011-03-14 17:37:44 +00:00
parent 3a0a9d9a33
commit e6a7d02fbe

View File

@ -1186,7 +1186,7 @@ static gboolean tag_equal(gconstpointer v1, gconstpointer v2)
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;