Cast ber_read() arg to char*

This commit is contained in:
Hallvard Furuseth 1999-08-01 20:27:03 +00:00
parent a49590eab7
commit 8a97fb0201

View file

@ -178,7 +178,7 @@ ber_getnint(
return( -1 );
/* read into the low-order bytes of our buffer */
if ( (ber_len_t) ber_read( ber, buf, len ) != len ) {
if ( (ber_len_t) ber_read( ber, (char *) buf, len ) != len ) {
return( -1 );
}