mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-27 01:59:38 -05:00
remove IA64 lint
This commit is contained in:
parent
cd23b57eee
commit
dc1e5a9392
2 changed files with 2 additions and 2 deletions
|
|
@ -255,7 +255,7 @@ LIBLDBM_F (Datum) ldbm_nextkey( LDBM ldbm, Datum key, LDBMCursor *cursor );
|
|||
/* initialization of Datum structures */
|
||||
#if defined( HAVE_BERKELEY_DB ) && (DB_VERSION_MAJOR >= 2)
|
||||
LIBLDBM_F (void *) ldbm_malloc( size_t size );
|
||||
# define ldbm_datum_init(d) ((void)memset(&(d), 0, sizeof(Datum)))
|
||||
# define ldbm_datum_init(d) ((void)memset(&(d), '\0', sizeof(Datum)))
|
||||
#else
|
||||
# define ldbm_datum_init(d) ((void)0)
|
||||
#endif /* HAVE_BERKELEY_DB */
|
||||
|
|
|
|||
|
|
@ -489,7 +489,7 @@ typedef struct slap_filter {
|
|||
} Filter;
|
||||
|
||||
/* compare routines can return undefined */
|
||||
#define SLAPD_COMPARE_UNDEFINED ((ber_tag_t) -1)
|
||||
#define SLAPD_COMPARE_UNDEFINED ((ber_int_t) -1)
|
||||
|
||||
/*
|
||||
* represents an attribute (description + values)
|
||||
|
|
|
|||
Loading…
Reference in a new issue