diff options
author | Stef Walter <stefw@collabora.co.uk> | 2011-06-07 11:46:14 +0000 |
---|---|---|
committer | Stef Walter <stefw@collabora.co.uk> | 2011-06-07 11:46:14 +0000 |
commit | 0f09803ba95bcdfebf4bde509b43b3ca52cd9d3f (patch) | |
tree | 008ff1612f9387db9c3eaffb0af5d85734ad7ccd /p11-kit/hash.c | |
parent | a5d3e34397d847a0c9b2e3aab7bd9f0b1080af05 (diff) |
Fix compiler warnings.
Diffstat (limited to 'p11-kit/hash.c')
-rw-r--r-- | p11-kit/hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p11-kit/hash.c b/p11-kit/hash.c index 1bb9d61..9be1c32 100644 --- a/p11-kit/hash.c +++ b/p11-kit/hash.c @@ -442,7 +442,7 @@ hash_intptr_equal (const void *int_one, const void *int_two) unsigned int hash_direct_hash (const void *ptr) { - return (unsigned int)ptr; + return (unsigned int)(unsigned long)ptr; } int |