Skip to content

Commit

Permalink
Patched to compile.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Feb 24, 2010
1 parent 03afe4f commit 33b3d11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mojoshader_common.c
Expand Up @@ -178,7 +178,7 @@ static inline uint32 hash_string(const char *str, size_t len)
uint32 hash_hash_string(const void *sym, void *data)
{
(void) data;
return hash_string(sym, strlen(sym));
return hash_string(sym, strlen((const char *) sym));
} // hash_hash_string

int hash_keymatch_string(const void *a, const void *b, void *data)
Expand Down

0 comments on commit 33b3d11

Please sign in to comment.