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

Cast unsigned char *p to char *.

parent 0ef242a5
No related branches found
No related tags found
No related merge requests found
......@@ -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++;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment