]> git.sur5r.net Git - openldap/blobdiff - include/lber_pvt.h
cleanup
[openldap] / include / lber_pvt.h
index 965d5238ea9cf03c41abb6d9e3e89d117c4ec976..b2bb0153dbe8f62f887159492d665d1226eb7c76 100644 (file)
@@ -1,7 +1,7 @@
 /* $OpenLDAP$ */
 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
  *
- * Copyright 1998-2005 The OpenLDAP Foundation.
+ * Copyright 1998-2006 The OpenLDAP Foundation.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -167,10 +167,10 @@ ber_bvarray_add_x LDAP_P(( BerVarray *p, BerValue *bv, void *ctx ));
        ( (s)[0] == (c) && (s)[1] == '\0' )
 
 #define ber_bvchr(bv,c) \
-       memchr( (bv)->bv_val, (c), (bv)->bv_len )
+       ((char *) memchr( (bv)->bv_val, (c), (bv)->bv_len ))
 
 #define ber_bvrchr(bv,c) \
-       memrchr( (bv)->bv_val, (c), (bv)->bv_len )
+       ((char *) memrchr( (bv)->bv_val, (c), (bv)->bv_len ))
 
 #define ber_bvchr_right(dst,bv,c) \
        do { \