Skip to content
Snippets Groups Projects
Commit 8a97fb02 authored by Hallvard Furuseth's avatar Hallvard Furuseth
Browse files

Cast ber_read() arg to char*

parent a49590ea
Branches
Tags
No related merge requests found
......@@ -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 );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment