summaryrefslogtreecommitdiffstats
path: root/common/dhash/dhash_test.c
diff options
context:
space:
mode:
authorSimo Sorce <ssorce@redhat.com>2009-12-08 11:06:42 -0500
committerStephen Gallagher <sgallagh@redhat.com>2009-12-08 12:31:46 -0500
commit202bd8e4d0a4b7e3d09f0eb5a6ac512ff83d9285 (patch)
tree606727dfddc3c6df970703df0ba4c40267474559 /common/dhash/dhash_test.c
parent2313a32ea75f9433e36fc03c6fb83c4eff8379d8 (diff)
downloadsssd-202bd8e4d0a4b7e3d09f0eb5a6ac512ff83d9285.tar.gz
sssd-202bd8e4d0a4b7e3d09f0eb5a6ac512ff83d9285.tar.xz
sssd-202bd8e4d0a4b7e3d09f0eb5a6ac512ff83d9285.zip
Change dhash API to be talloc-friendly
Diffstat (limited to 'common/dhash/dhash_test.c')
-rw-r--r--common/dhash/dhash_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/dhash/dhash_test.c b/common/dhash/dhash_test.c
index 450a1ab55..fedfa66a2 100644
--- a/common/dhash/dhash_test.c
+++ b/common/dhash/dhash_test.c
@@ -188,7 +188,7 @@ int main(int argc, char **argv)
if ((status = hash_create_ex(1, &table,
directory_bits, segment_bits,
min_load_factor, max_load_factor,
- NULL, NULL, delete_callback)) != HASH_SUCCESS) {
+ NULL, NULL, NULL, delete_callback)) != HASH_SUCCESS) {
fprintf(stderr, "table creation failed at line %d (%s)\n", __LINE__, error_string(status));
exit(1);
}