mirror of
https://github.com/openssl/openssl.git
synced 2024-11-24 02:23:51 +08:00
add missing const
Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
This commit is contained in:
parent
f53537b1fa
commit
4b6ae3c3c2
@ -287,7 +287,7 @@ static char *pt(const unsigned char *p, char buf[DATA_BUF_SIZE])
|
||||
{
|
||||
char *ret;
|
||||
int i;
|
||||
static char *f = "0123456789ABCDEF";
|
||||
static const char *f = "0123456789ABCDEF";
|
||||
|
||||
ret = &(buf[0]);
|
||||
for (i = 0; i < 8; i++) {
|
||||
|
Loading…
Reference in New Issue
Block a user