diff options
author | Ralf Corsépius <corsepiu@fedoraproject.org> | 2007-10-29 10:21:32 +0100 |
---|---|---|
committer | Ralf Corsépius <corsepiu@fedoraproject.org> | 2007-10-29 10:21:32 +0100 |
commit | a82d639d7288cd088f539371b5e710311451c3cc (patch) | |
tree | ac2ad4966afe78e7ad1bf6a4bf07c9bf52850d47 /rpmdb/rpmhash.h | |
parent | 546867c2b5d2ccade4ade4f399eab8a2c180cdec (diff) | |
download | rpm-a82d639d7288cd088f539371b5e710311451c3cc.tar.gz rpm-a82d639d7288cd088f539371b5e710311451c3cc.tar.bz2 rpm-a82d639d7288cd088f539371b5e710311451c3cc.zip |
Use size_t for sizes.
Diffstat (limited to 'rpmdb/rpmhash.h')
-rw-r--r-- | rpmdb/rpmhash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpmdb/rpmhash.h b/rpmdb/rpmhash.h index f5cce1db5..5e840bd5a 100644 --- a/rpmdb/rpmhash.h +++ b/rpmdb/rpmhash.h @@ -48,7 +48,7 @@ int hashEqualityString(const void * key1, const void * key2); * @param eq function to compare hash keys for equality * @return pointer to initialized hash table */ -hashTable htCreate(int numBuckets, int keySize, int freeData, +hashTable htCreate(int numBuckets, size_t keySize, int freeData, hashFunctionType fn, hashEqualityType eq); /** |