s/LDAP_CONST/const/ in ldap_pvt_asser() prototype

This commit is contained in:
Hallvard Furuseth 1999-08-01 21:41:46 +00:00
parent eaf331f4aa
commit e7738c2df7
2 changed files with 2 additions and 2 deletions

View file

@ -31,7 +31,7 @@
*/
LDAP_F(void) ber_pvt_assert LDAP_P((
LDAP_CONST char *file, int line, LDAP_CONST char *test));
const char *file, int line, const char *test ));
/* Can't use LDAP_STRING(test), that'd expand to "test" */
#if defined(__STDC__) || defined(__cplusplus)

View file

@ -23,7 +23,7 @@
*/
void
ber_pvt_assert( LDAP_CONST char *file, int line, LDAP_CONST char *test )
ber_pvt_assert( const char *file, int line, const char *test )
{
fprintf(stderr,
"Assertion failed: %s, file %s, line %d\n",