Merge remote-tracking branch 'gvdb/master'

This commit is contained in:
Ryan Lortie
2011-09-12 08:12:57 -04:00
2 changed files with 2 additions and 2 deletions

View File

@@ -93,7 +93,7 @@ djb_hash (const gchar *key)
guint32 hash_value = 5381;
while (*key)
hash_value = hash_value * 33 + *key++;
hash_value = hash_value * 33 + *(signed char *)key++;
return hash_value;
}