summaryrefslogtreecommitdiff
path: root/rpmdb/rpmhash.h
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2002-05-17 21:08:39 +0000
committerjbj <devnull@localhost>2002-05-17 21:08:39 +0000
commit38385c8d6323e3695e0b267ab7b2fcffff9f72b3 (patch)
tree75b5726cc79eb90a18d3ab94cd2d9e2bffa11630 /rpmdb/rpmhash.h
parent076a6e29c5c8a35a5f78ae2a15339d030cfe2fdf (diff)
downloadrpm-38385c8d6323e3695e0b267ab7b2fcffff9f72b3.tar.gz
rpm-38385c8d6323e3695e0b267ab7b2fcffff9f72b3.tar.bz2
rpm-38385c8d6323e3695e0b267ab7b2fcffff9f72b3.zip
Transactions made increasingly opaque.
CVS patchset: 5438 CVS date: 2002/05/17 21:08:39
Diffstat (limited to 'rpmdb/rpmhash.h')
-rw-r--r--rpmdb/rpmhash.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/rpmdb/rpmhash.h b/rpmdb/rpmhash.h
index a4f599ee5..89fcfa83a 100644
--- a/rpmdb/rpmhash.h
+++ b/rpmdb/rpmhash.h
@@ -59,8 +59,10 @@ hashTable htCreate(int numBuckets, int keySize, int freeData,
/**
* Destroy hash table.
* @param ht pointer to hash table
+ * @return NULL always
*/
-void htFree( /*@only@*/ hashTable ht)
+/*@null@*/
+hashTable htFree( /*@only@*/ hashTable ht)
/*@modifies ht @*/;
/**