mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-10 17:03:09 -05:00
Cast unsigned char *p to char *.
This commit is contained in:
parent
0ef242a5aa
commit
1fa40181d9
1 changed files with 1 additions and 1 deletions
|
|
@ -587,7 +587,7 @@ ber_get_next(
|
|||
tlen <<=8;
|
||||
tlen |= *p++;
|
||||
}
|
||||
ber->ber_ptr = p;
|
||||
ber->ber_ptr = (char *)p;
|
||||
} else {
|
||||
tlen = *(unsigned char *)ber->ber_ptr++;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue