mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 00:59:45 -05:00
s/LDAP_CONST/const/ in ldap_pvt_asser() prototype
This commit is contained in:
parent
eaf331f4aa
commit
e7738c2df7
2 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in a new issue