Kaydet (Commit) e6a7d02f authored tarafından Nick Treleaven's avatar Nick Treleaven

Fix sign warning in tag_hash().


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5589 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 3a0a9d9a
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment