diff options
| author | Rich Megginson <rmeggins@redhat.com> | 2008-10-09 14:57:32 +0000 |
|---|---|---|
| committer | Rich Megginson <rmeggins@redhat.com> | 2008-10-09 14:57:32 +0000 |
| commit | 4a045f0c371ae588c39cdfe1cbdb4ee048b0aeac (patch) | |
| tree | 029be482353b4b127293c3ee2b3d694200e5495f | |
| parent | b3797a8704696ed77b69a042e75ce5553e24b68b (diff) | |
| download | ds-4a045f0c371ae588c39cdfe1cbdb4ee048b0aeac.tar.gz ds-4a045f0c371ae588c39cdfe1cbdb4ee048b0aeac.tar.xz ds-4a045f0c371ae588c39cdfe1cbdb4ee048b0aeac.zip | |
Resolves: bug 454030
Description: Need to address 64-bit compiler warnings - part 1
Fix Description: missed one line from my previous commit
| -rw-r--r-- | ldap/servers/slapd/back-ldbm/ldif2ldbm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldap/servers/slapd/back-ldbm/ldif2ldbm.c b/ldap/servers/slapd/back-ldbm/ldif2ldbm.c index 2cf91f3a..31c76224 100644 --- a/ldap/servers/slapd/back-ldbm/ldif2ldbm.c +++ b/ldap/servers/slapd/back-ldbm/ldif2ldbm.c @@ -269,7 +269,7 @@ int add_op_attrs(Slapi_PBlock *pb, struct ldbminfo *li, struct backentry *ep, int import_subcount_mother_init(import_subcount_stuff *mothers, ID parent_id, size_t count) { - PR_ASSERT(NULL == PL_HashTableLookup(mothers->hashtable,(void*)parent_id)); + PR_ASSERT(NULL == PL_HashTableLookup(mothers->hashtable,(void*)((uintptr_t)parent_id))); PL_HashTableAdd(mothers->hashtable,(void*)((uintptr_t)parent_id),(void*)count); return 0; } |
